Curated list of favorite aliases
Here a short list of of common aliases from the ADACS group:
# Common Spelling mistakes
alias cd..=”cd ..”
alias cdd=”cd”
alias cdc=”cd”
# Supercomputers
alias pm=”ps aux | grep username”
alias gstar=”ssh -X username@g2.hpc.swin.edu.au”
alias ozstar=”ssh -Y username@ozstar.swin.edu.au”
alias pawsey=”ssh -Y username@magnus.pawsey.org.au”
# Make some of the file manipulation programs verbose
alias mv=”mv -v”
alias rm=”rm -vi”
alias cp=”cp -v”
# Other
alias rmbak=”rm -f *~”
alias ls=”ls –color”
alias c=”/usr/bin/clear”
alias sudo=”sudo ”
alias reload=’source .bash_profile’
alias update=’brew update && brew upgrade –all && brew cask update && brew cleanup && brew cask cleanup’
alias weather=”curl wttr.in”