Quickest way to transfer files from your terminal
Do you often use the SCP command to transfer files from your computer to a remote server? This little code snippet may come to good use for you: function push { if [[ $1 == "config" ]]; then if [[ $# == 1 ]]; then echo "Usage: push config username hostname destinationpath opt…
