Skip to content

Instantly share code, notes, and snippets.

@johng
johng / .bash_profile
Last active January 1, 2017 23:25
Bash Profile
alias ll='ls -FGlAhp'
alias ..='cd ../'
alias path='echo -e ${PATH//:/\\n}'
alias ~="cd ~"
alias cp='cp -iv' # Preferred 'cp' implementation
alias mv='mv -iv'
alias mkdir='mkdir -pv'
alias edit='subl'
alias f='open -a Finder ./'