Immediately I want to try to refactor this to use the new dynamic functionality of 2.10. I think you could get a better interface much like you get in this python library
val curl = (url: String) => CLI.enumerate(Seq("curl", "-s", url))
This Seq synthax is provided by scala.sys.process,
AFAIK, as a nice side-effect, it guarantees some safety of command parameters (avoiding injections).
[+] [-] dkhenry|13 years ago|reply
[+] [-] gren|13 years ago|reply
I haven't go that far in the API but you can still do something like:
and This Seq synthax is provided by scala.sys.process, AFAIK, as a nice side-effect, it guarantees some safety of command parameters (avoiding injections).[+] [-] ippa|13 years ago|reply
[+] [-] offdrey|13 years ago|reply
[+] [-] gren|13 years ago|reply