On Linux
mount -o loop -t iso9660 path/to/iso.iso /mnt

On FreeBSD
mdconfig -a -t vnode -f /isofile -u 0
mount -t cd9660 /dev/md0 /mnt

To add an ip resource who’s a member of group “ip_group” create an xml file :












import the resource using :

cibadmin -V -M -o resources -x file.xml

( note you are using -M to modify the existing group … )
delete the resource :

cibadmin -V -D -o resources -X’

Replace char with newline :

:s/X/^M/

^M = ctrl-V + m

tcpdump -nAs 2048 src port 80

using VI while the file is open :  :%s/^M$//g
using sed :   cat file | |sed 's/^M$//' > newfile
using dos2unix :  http://www.linuxcommand.org/man_pages/dos2unix1.html
using tr :   tr -d "\015" < filename > newfile