Why? Because DNS is a great enabler! Let’s say you want to share some information with the world but you have a regular, dynamic xDSL Internet connection. You start up a web server, open port 80 on your router, find your IP address is 72.49.120.103, then call some friends to let them know that address….
Tag: Bash!
Mass mailing from the command line!
This is the little script that sent out the messages for the picnic! #!/bin/bash for Each in ` cat CLUGers.txt ` do cat Message.txt | mutt -s “June CLUG meeting” $Each echo $Each sleep 10 done Message.txt is a file in the local directory that contained the body text of the e-mail, CLUGers.txt is a…