Skip to content

Instantly share code, notes, and snippets.

View burkestar's full-sized avatar

Dustin Burke burkestar

View GitHub Profile
# Xcode convenience function
function xcode {
if (( $# == 0 )); then
if [ -f *.xcodeproj ]; then
open *.xcodeproj
else
open -a Xcode.app
fi
fi
open -a Xcode.app $1