How to start external application from Scala?
+1
A:
Since Scala runs on the JVM, you can do this the same way as you would in Java, by using Runtime.exec(...)
(look that up in the Java API documentation).
You can also use java.lang.ProcessBuilder
for more control.
Jesper
2009-10-15 12:36:40
A:
There is a very good library (DSL) written for this called simple-build-tool
cat(file) #| "grep -i scala" !
oxbow_lakes
2009-10-15 14:43:24