You can use the Java Runtime.exec method as follows:
(import 'java.lang.Runtime) (. (Runtime/getRuntime) exec "your-command-line-here")
The Runtime.exec method returns a Process object that can be requested to receive standard output, etc. as needed.
mikera Jul 18 '11 at 16:21 2011-07-18 16:21
source share