Created
April 6, 2021 11:25
-
-
Save WonderJeffy/bd4a744268772cc91538aad3775eedd0 to your computer and use it in GitHub Desktop.
Xcode 中快速打开当前项目终端
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
#!/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