In the tutorial we are going to learn,
How to open terminal window directly from Xcode?
.sh file
#!/bin/sh
open -a Terminal "`pwd`"
To get permission:
chmod + (path of the .sh file)
If you still see the file is unselectable. Then,
sudo chmod 755 (.sh file path)
Credits:
• Xcode tricks - Open terminal into project ...