0
我正在使用運行OSX Yosemite v.10.10.5的Mac。如何從AppleScript運行shell腳本?
當我嘗試從我的AppleScript運行我的shell腳本,我收到以下錯誤信息:在AppleScript腳本編輯器
error "sh: /Users/path/to/file/myShellScript.sh: Permission denied" number 126
myShellScript.sh
cd /Users/myusername/Git/myproject/
git remote remove origin
myAppleScript.applescript
錯誤信息
do shell script "/Users/path/to/file/myShellScript.sh"
我在做什麼錯?
您還應該添加一個shebang行('#/斌/ bash'!)作爲腳本的第一行。 –