Skip to content

Instantly share code, notes, and snippets.

View JonathanBeech's full-sized avatar

Jonathan Beech JonathanBeech

View GitHub Profile
@JonathanBeech
JonathanBeech / gist:4556330
Created January 17, 2013 14:35
A list of useful terminal commands
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
killall Finder
This is another terminal script to be put in the terminal allows the mac to display an absolute path in the Finder window.
➜ ~ defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
➜ ~ killall Finder
#this is a shell script that allows you to have the folder and file paths to be displayed at the top of your finder window
@JonathanBeech
JonathanBeech / Alias's to use in the terminal
Created January 19, 2013 10:48
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 ../..'