vrc-get/test.applescript
2025-06-21 13:43:05 +09:00

10 lines
209 B
AppleScript

#!/usr/bin/env osascript
on run (folderName)
tell application "Finder"
tell folder folderName
log "opening folder " & folderName
open
end tell
end tell
end run