私はAppleScriptの小さな部分を利用するシェルスクリプトに問題があります。私はAppleScriptエディタでそれをコンパイルするときに動作します。シェルスクリプト内ではありません。osascript/syntax error:行の終わりが必要ですが、コマンド名が見つかりました。 (-2741)
osascript -e 'tell application "System Events" -e 'activate'
osascript -e 'tell process "Application 10.5" -e 'set frontmost to true' -e 'end tell'
osascript -e 'delay 1' -e 'keystroke return' -e 'delay 1' -e 'keystroke return'
end tell
のAppleScript(作品):ここで
44:49: syntax error: Expected end of line but found command name. (-2741) 23:28: syntax error: Expected end of line but found “after”. (-2741)
は、シェルコードである
tell application "System Events"
activate
tell process "Application 10.5"
set frontmost to true
end tell
delay 1
keystroke return
delay 1
keystroke return
end tell
[更新]/[解決]
これはの世話をしました私が使っているAppleScriptを変更しようとしていたどんな種類の問題でも地獄のスクリプト:
## shell script code
echo "shell script code"
echo "shell script code"
## applescript code
osascript <<EOF
tell application "Scriptable Text Editor"
make new window
activate
set contents of window 1 to "Hello World!" & return
end tell
EOF
## resume shell script...
それはあなたがシェルスクリプトに直接純粋なAppleScriptを置くことができるしていることは非常にクールです。 ;-)
ありがとうございます。私は実際にそれを修正するためのすべての作業を行うことなく、シェルスクリプトに直接AppleScriptを入れる優れた方法を考え出しました。 (上記を参照) - –