Page 1 of 1
Forum

Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!

Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.

Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!



AppleScript - How t...
 
Share:
Notifications
Clear all

[Solved] AppleScript - How to execute a multi line applescript from Terminal

2 Posts
1 Users
0 Reactions
5,793 Views
 Hans
(@hans)
Famed Member Admin
Joined: 11 years ago
Posts: 2728
Topic starter  

Sometimes we need to resort to AppleScript, and sometime we need to run that on the command line (Terminal),...
But how do we do this when our AppleScript has multiple lines?

Example:

tell application "Terminal"
    do script "some shell commands"
    delay 3
    do script "some more stuff"
end tell

So how do we execute that script in Terminal with "osascript"?
The trick is to make each line an execute script, like so (this is one line!):

osascript -e 'tell application "Terminal"' -e 'do script "some shell commands"' -e 'delay 3' -e 'do script "some more stuff"' -e 'end tell'

So we start with "osascript -e" and past the first line after that with single quotes.
Then we type "-e" again and paste the next line with single quotes.
Rinse and repeat for all lines, and when done press ENTER.


   
ReplyQuote
 Hans
(@hans)
Famed Member Admin
Joined: 11 years ago
Posts: 2728
Topic starter  

Funny little script to toggle Dark vs Light Theme that uses this;

osascript -e 'tell application "System Events"' -e 'tell appearance preferences' -e 'set dark mode to not dark mode' -e 'end tell' -e 'end tell'

   
ReplyQuote
Share: