Skip to content

Instantly share code, notes, and snippets.

@jsakas
Last active November 4, 2018 22:26
Show Gist options
  • Save jsakas/3155ba0869274eb3b7a7f79b8e1fe7a9 to your computer and use it in GitHub Desktop.
Save jsakas/3155ba0869274eb3b7a7f79b8e1fe7a9 to your computer and use it in GitHub Desktop.
# 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