Skip to content

Instantly share code, notes, and snippets.

@nobiki
Last active November 22, 2017 00:41
Show Gist options
  • Save nobiki/bd6dd707a0f73c574ead4d33d78ec6d3 to your computer and use it in GitHub Desktop.
Save nobiki/bd6dd707a0f73c574ead4d33d78ec6d3 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ "upload" == $1 ];then
scp `dirname $0`/$2/$3 hostname:/path/to/workspace/$2/$3
elif [ 'download' == $1 ];then
scp hostname:/path/to/workspace/$2/$3 `dirname $0`/$2/$3
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment