Created
November 6, 2018 10:31
-
-
Save brendtumi/b1b776d4ae74195b15ffcb01fb2eba6e to your computer and use it in GitHub Desktop.
My Bash alias file
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
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