Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Last active January 21, 2020 14:38
Show Gist options
  • Save wholypantalones/e6687691927f3e6e10d566496c4065ee to your computer and use it in GitHub Desktop.
Save wholypantalones/e6687691927f3e6e10d566496c4065ee to your computer and use it in GitHub Desktop.
Bash Aliases
alias push="git pull; git push"
alias zuul="cd ~/git/zuul/; java -Dzuul.host.socket-timeout-millis=250000 -jar target/*.jar"
webstorm="cd ~/WebStorm-193.5662.54/bin/webstorm.sh"
alias nodeapp="nodemon -e jsx,js,json,html,css,yml,ts app.js"
alias go="npm start"
alias start="a & b"
a() {
echo "running zuul"
cd ~/git/zuul/; java -Dzuul.host.socket-timeout-millis=250000 -jar target/*.jar
}
b() {
echo "running WebStorm"
gnome-terminal --tab -- ~/WebStorm-193.5662.54/bin/webstorm.sh
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment