Skip to content

Instantly share code, notes, and snippets.

@asvae
Created April 3, 2015 14:58
Show Gist options
  • Save asvae/0e7dc5ce2fcba996995e to your computer and use it in GitHub Desktop.
Save asvae/0e7dc5ce2fcba996995e to your computer and use it in GitHub Desktop.
Ngrok nginx bash alias
function ngroka() {
if [[ "$1" ]]
then
ngrok -authtoken YOUR_TOKEN -subdomain $1 80
else
echo "Error: missing required parameter."
echo "Usage: ngrok subdomain"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment