I want to issue a native system command from a Scala program, and perhaps trap the output. (\"ls\" comes to mind. There may be other ways to get directory information without is
import scala.sys.process._ val vimLocation: String = "whereis vim" !!
reference