diff --git a/bin/shipit b/bin/shipit index 7714a80..0e18520 100755 --- a/bin/shipit +++ b/bin/shipit @@ -36,20 +36,21 @@ function error() { echo -e "$UNDERLINE$RED$1$NOCOLOR\n"; } usage() { version echo - echo "Usage: `basename $0` [command|option]" + echo "Usage: `basename $0` [option] " echo - echo "Options:" + echo "Commands:" echo - echo " -V, --version Print program version" - echo " -v, --verbose Enable verbose mode for SSH" - echo " -h, --help Print help (this screen)" + echo " Execute target on remote host" + echo " list ls Print list of available targets" + echo " console shell, ssh Open an SSH session on the remote host" + echo " exec run Execute on the remote host" + echo " copy cp Copy to the remote host" + echo " --version -V Print program version" + echo " --help -h Print help (this screen)" echo - echo "Commands:" + echo "Options:" echo - echo " Executes target on remote host (run shipit to execute 'deploy' target)" - echo " list Print list of available targets" - echo " console Open an SSH session on remote host" - echo " exec Execute on remote host" + echo " -v, --verbose Enable verbose mode for SSH" echo }