Applescript with Clojure Today I was experimenting with AppleScript engine thats included with Java 1.6. It makes it much easier to interact with OS X then executing osascript using Runtime. (let [mngr (javax.script.ScriptEngineManager.) engine (.getEngineByName mngr "AppleScript")] (.eval engine "say \"Hello World!\"")) For simple stuff, it is as simple as asking engine manager for the AppleScrip