Created
July 18, 2019 12:24
-
-
Save chapinb/def241b034fefae3423b8a9383279155 to your computer and use it in GitHub Desktop.
Common 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
# Homebrew, install at brew.sh | |
alias binfo='brew info' | |
alias bupdate='brew update' | |
alias bupgrade='brew upgrade' | |
alias bsearch='brew search' | |
# Git | |
alias gitu='git add -u' | |
alias gitc='git commit' | |
alias gits='git status -uno' | |
# Common | |
alias ..='cd ..' | |
alias ff='find . -name ' | |
alias cls='clear' # For those who use windows as well | |
alias dir='ls' # For those who use windows as well | |
# Pipe utils | |
alias jqp="jq '.' " # Requires jq | |
alias fvgrep='fgrep -v' | |
alias usort='sort | uniq -c | sort -n' # Normal sort | |
alias ursort='sort | uniq -c | sort -rn' # Reverse sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment