$ cat > ~/lib/mx.sh
function mx( ) {
# Look up mail exchanger for host(s)
for host
do
echo "==== $host ===="
dig "$host" mx in |
sed -n '/^;; ANSWER SECTION:/,/^$/{
s/^[^;].* //p
}'
done
}
^D
$ more !$
function mx( ) {
# Look up mail exchanger for host(s)
for host
do
echo "==== $host ===="
dig "$host" mx in |
sed -n '/^;; ANSWER SECTION:/,/^$/{
s/^[^;].* //p
}'
done
}
$
Now the file ~/lib/mx.sh contains a function
named mx( ) -- fair enough, but
let's say we want to be able to pass a list of hosts
(determined dynamically on a regular basis, say, from spam-fighting
tools that find open SMTP proxies) to a shell script, and have that
shell script email a form letter to the postmaster
address at that host. We will call the shell script
proxynotify, and call it as follows:
$ proxynotify < proxyList