Created
January 19, 2013 10:48
-
-
Save JonathanBeech/4571956 to your computer and use it in GitHub Desktop.
alias's for the terminal created by Jonny Beech
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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