mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-10-16 15:38:44 +02:00
- Update some sheets which have very long sections - Remove `layout: 2017/sheet` (everything has the same layout now) - Remove outdated sheets
805 B
805 B
title, updated, category, prism_languages
title | updated | category | prism_languages | |
---|---|---|---|---|
AppleScript | 2018-12-06 | macOS |
|
Running
osascript -e "..."
display notification "X" with title "Y"
Comments
-- This is a single line comment
# This is another single line comment
(*
This is
a multi
line comment
*)
Say
-- default voice
say "Hi I am a Mac"
-- specified voice
say "Hi I am a Mac" using "Zarvox"
Beep
-- beep once
beep
-- beep 10 times
beep 10
Delay
-- delay for 5 seconds
delay 5
Handlers
on doubleNumber(n)
return n * 2
end doubleNumber
set doubledValue to my doubleNumber(2)