RosettaCodeData/Task/Command-line-arguments/AppleScript/command-line-arguments.applescript

6 lines
95 B
AppleScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#!/usr/bin/env osascript
-- Print first argument
on run argv
return (item 1 of argv)
end run