Skip to content

Instantly share code, notes, and snippets.

@brendtumi
Created November 6, 2018 10:31
Show Gist options
  • Save brendtumi/b1b776d4ae74195b15ffcb01fb2eba6e to your computer and use it in GitHub Desktop.
Save brendtumi/b1b776d4ae74195b15ffcb01fb2eba6e to your computer and use it in GitHub Desktop.
My Bash alias file
alias celar='clear' # FU typo
alias clr='clear'
alias agi='sudo apt install'
alias update='sudo apt update'
alias upgrade='sudo apt upgrade -y'
alias aptlist='apt list --upgradable'
alias sizeof='du -hs '
alias gstat='git status'
alias rscp="rsync --rsh='ssh' -av --progress --partial " # local_file user@host:remote_file (SRC DEST)
alias rcp='rsync -azvrh --progress --partial'
alias findin='grep -rnw . -e'
alias tarall='tar -zcvf ' # dest.tar.gz folders file
alias prettyjson='python -m json.tool'
alias portof='lsof -i' #port number like :3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment