Mail a file as an attachment from the UNIX prompt
1 uuencode file.txt file.txt | mail email@address.com
DZone Snippets > peter > cli
12878 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Peter Cooperx http://www.petercooper.co.uk/
1 uuencode file.txt file.txt | mail email@address.com
1 openssl des3 -salt -in infile.txt -out encryptedfile.txt
1 openssl des3 -d -salt -in encryptedfile.txt -out normalfile.txt
1 for f in *.htm; do mv $f `basename $f .htm`.html; done;
1 cd -
1 pushd /newdirectory
1 popd