Skip to content

Instantly share code, notes, and snippets.

@WonderJeffy
Created April 6, 2021 11:25
Show Gist options
  • Save WonderJeffy/bd4a744268772cc91538aad3775eedd0 to your computer and use it in GitHub Desktop.
Save WonderJeffy/bd4a744268772cc91538aad3775eedd0 to your computer and use it in GitHub Desktop.
Xcode 中快速打开当前项目终端
#!/bin/sh
if [ -n "$XcodeProjectPath" ]; then
open -a Terminal "$XcodeProjectPath"/..
else
open -a Terminal "$XcodeWorkspacePath"/..
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment