Skip to content

Instantly share code, notes, and snippets.

@JonathanBeech
Created January 19, 2013 10:48
Show Gist options
  • Save JonathanBeech/4571956 to your computer and use it in GitHub Desktop.
Save JonathanBeech/4571956 to your computer and use it in GitHub Desktop.
alias's for the terminal created by Jonny Beech
# Jonny Beech's alias's and functions
alias desk='cd ~/Desktop'
alias docs='cd ~/Documents'
alias sites-'cd ~/Sites'
alias ren='mv'
alias up='cd ..'
alias ..='cd ..'
alias ...='cd ../..'
alias p="open /Users/jonbeech/Dropbox/appdata/sublime/Packages"
function proj() { cp -r /Users/jonbeech/Dropbox/code/website-template `pwd`; mv website-template $1; }
function take() { mkdir -p $1; cd $1; }
alias tk='take'
# Toggle hidden files in Finder
alias showhidden='defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder'
alias hidehidden='defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment