I am trying to write an applescript to run this terminal command:
/Applications/DeerPark.app/Contents/MacOS/firefox -p "default"
What I have so far is
do shell script "/Applications/DeerPark.app/Contents/MacOS/firefox -p "default""
but it gives me the error:
A Identifier can't go after this """.So is there a different way I need to write the "
(
Read more... )
Comments 3
do shell script "/Applications/DeerPark.app/Contents/MacOS/firefox -p " & quoted form of "default"
or
do shell script "/Applications/DeerPark.app/Contents/MacOS/firefox -p \"default\""
Reply
run-mozilla.sh: Cannot execute /Applications/DeerPark.app/Contents/MacOS/firefox-bin.pure.
Reply
tell app "terminal" to do script "/Applications/DeerPark.app/Contents/MacOS/firefox -p \"default\"" in window 1
If that reveals nothing take a look at TN2065.
Reply
Leave a comment