Last active
August 29, 2015 14:06
-
-
Save zol/07d3c937a6568e28c2df to your computer and use it in GitHub Desktop.
Ground Control CLI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Ground Control CLI | |
# Copyright Percolate Studio 2014 | |
if [ $# -gt 0 ]; then | |
ssh -t -x [email protected] gcontrol ${*:2} | |
else | |
echo "Ground Control CLI" | |
echo "Usage: gcontrol.sh <app> [command] [arguments]" | |
printf "\n" | |
echo "For help on available commands, just pass the app parameter (e.g 'gcontrol.sh my_app')" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To install: