sed with multiple criteria

sed -e 1d -e 50d -e ‘/junks/d’ would remove first and 50th line & any line(s) with the word “junks”. update 20080821 : sed -e ‘/^$/d’ would remove every empty line

Exim – anti-spam per domain setting

acl_check_rcpt: blah … blah … blah … deny message = rejected as $sender_host_address is blacklisted in $dnslist_domain\n$dnslist_text domains = domain-one.com : domain-two.com : domain-three.com dnslists = sbl-xbl.spamhaus.org blah … blah … blah … reference link : http://www.exim-new-users.co.uk/content/view/65/39/

screen in FreeBSD default to csh as suppose to bash (preferred)

After changing bash shell to a new user using chsh, screen needs ~/.bashrc for environment settings, which need “ln -s ~/.bash_profile ~/.bashrc”.