What are your most liked alias for long commands or just to give them better names.

Mine are:

alias load="source .load.sh"
alias eload="$EDITOR .load.sh"
alias gpush="git push"
alias gadd="git add --all"
alias gcommit="git commit -m "
alias gst="git status -s"
alias gpull="git pull"
  • A quick upper and lower case alias lc=‘tr “[:upper:]” “[:lower:]”’ alias uc=‘tr “[:lower:]” “[:upper:]”’

    And because I work a lot with ldap, and ldapsearch returns wrapped text that I can’t pass to another pipe stage (e.g. grep, sort): alias unwrapLDIF=“perl -p0e ‘s/\n //g’”