Skip to content

Instantly share code, notes, and snippets.

@chapinb
Created July 18, 2019 12:24
Show Gist options
  • Save chapinb/def241b034fefae3423b8a9383279155 to your computer and use it in GitHub Desktop.
Save chapinb/def241b034fefae3423b8a9383279155 to your computer and use it in GitHub Desktop.
Common Aliases
# 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