Awesome-Xcode-Behaviors
Awesome-Xcode-Behaviors copied to clipboard
It is more kinda off a question than an issue
First of all, Great Work 👏
Below is the shell script for pod install, but this will execute using Terminal Application. What if I want to execute the same command using iTerm application? Sharing knowledge on this is highly appreciated. Thanks.
Just for trying I tried to replace Terminal with iTerm, unfortunately it isn't working.
#!/bin/sh
osascript <<END
tell application "Terminal"
if not (exists window 1) then reopen
activate
do script "cd pwd
;pod install --repo-update" in window 1
end tell
END