Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 598 Bytes

run-applescript-commands-inline-in-the-terminal.md

File metadata and controls

16 lines (11 loc) · 598 Bytes

Run AppleScript Commands Inline In The Terminal

AppleScript is often invoked as a series of commands from a file. It is also possible to execute individual commands inline in the terminal. Use the -e flag to specify the command.

For example, if you'd like to mute your Mac:

$ osascript -e 'set volume 0'

Run that and your Mac's volume will now be at zero.

source