Last active
January 21, 2020 14:38
-
-
Save wholypantalones/e6687691927f3e6e10d566496c4065ee to your computer and use it in GitHub Desktop.
Bash Aliases
This file contains 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
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