Command line hacks

Transfer multiple files between hosts using cut and paste

source$ tar -czf - filenames | uuencode `hostname`.`date +%s`.tar.gz

(copy the output into your clipboard, you can copy the command prompt too)

destination$ pbpaste | uudecode # on Mac OS X