Tagged Questions
2
votes
1answer
476 views
AppleScript Runner exit status passed back to shell script
I need to be able to run AppleScript in a shell script. I am using "AppleScript Runner" in order to be in interactive mode, so that dialogs etc. are supported. I've got it working, but I need to get ...
2
votes
2answers
3k views
Can't do shell script with a repeat with i from 1 to n loop
This works (prints, for example, “3 arguments”):
to run argv
do shell script "echo " & (count argv) & " arguments"
end run
This doesn't (prints only “Argument 3: three”, and not the ...