Last active
November 4, 2018 22:26
-
-
Save jsakas/3155ba0869274eb3b7a7f79b8e1fe7a9 to your computer and use it in GitHub Desktop.
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
# Useful things I keep in my bash profile | |
alias untar='tar -zxvf'; | |
alias k='kubectl'; | |
alias c='docker-compose'; | |
alias d='docker'; | |
alias hackon='code . --add && github open .'; | |
alias yolo='git commit --amend --no-edit && git push -f'; | |
killport () { | |
kill -QUIT $(sudo lsof -sTCP:LISTEN -i tcp:$1 -t) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment