Joined June 2013
·

Jacek Dominiak

CA Technologies
·
Barcelona
·
·
·

ssh-copy-id does the same ;)

Posted to Shell Function to Download File over 1 year ago

could be done as a shell function as well, one file less to maintain:

function download {
    $(which curl) -o ${1##*/} $1
}
Achievements
61 Karma
1,545 Total ProTip Views