Boom

Difficult takes a day, impossible takes a week.

Command-Line Resources

SSH Tips

This excellent article entitled Tips for Remote Unix Work covers some vital SSH goodness. For example, copying your public ssh key

ssh user@example.com 'mkdir -p .ssh && cat >> .ssh/authorized_keys' < ~/.ssh/id_rsa.pub

and piping commands via SSH without logging into the remote machine

cd && tar czv src | ssh example.com 'tar xz'