Apple script getting Syntax error - Error: Expected end of line, etc. but found “"”
Apple script getting Syntax error - Error: Expected end of line, etc. but found “"”
#! /usr/bin/osascript
osascript -e "do shell script
"chmod 777 /Library/ColorSync/Profiles" with administrator privileges"
错误:
预期行尾等,但发现“”。
我是苹果脚本的新手。我需要用 NSAppleScript 运行 这个。作为第一步,我从脚本编辑器收到上述错误消息。
你有 #!/usr/bin/osascript
shebang。您无需在代码中调用 osascript
。只是做:
#!/usr/bin/osascript
do shell script "foo"
#! /usr/bin/osascript
osascript -e "do shell script
"chmod 777 /Library/ColorSync/Profiles" with administrator privileges"
错误: 预期行尾等,但发现“”。
我是苹果脚本的新手。我需要用 NSAppleScript 运行 这个。作为第一步,我从脚本编辑器收到上述错误消息。
你有 #!/usr/bin/osascript
shebang。您无需在代码中调用 osascript
。只是做:
#!/usr/bin/osascript
do shell script "foo"