Skip to content

Instantly share code, notes, and snippets.

@jonathan-beebe
Last active June 12, 2016 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathan-beebe/fca398feeab8eaa6c15c to your computer and use it in GitHub Desktop.
Save jonathan-beebe/fca398feeab8eaa6c15c to your computer and use it in GitHub Desktop.
Helpful bash aliases for Xcode projects
alias xw="open *.xcworkspace"
alias xp="open *.xcodeproj"
function xcode {
# If the pattern matches a workspcace file, try to open it.
if stat -t -- *.xcworkspace >/dev/null 2>&1; then
xw
# Otherwise fall back to opening a project file.
else
xp
fi
}
alias xc="xcode"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment