[Haskell-cafe] createProcess problem
Claude Heiland-Allen
claudiusmaximus at goto10.org
Mon Apr 27 19:19:20 EDT 2009
Hi Vasili,
Vasili I. Galchin wrote:
> [snip]
>
> import System.Process
>
>
> main = do
> handle <- runProcess
> "blastall" -- executable
> ["-p blastn"] -- CLI args
Try:
["-p", "blastn"]
This passes multiple command line arguments instead of just one that
contains a space. Most shells use spaces to separate arguments.
> [snip]
Hope this helps,
Claude
--
http://claudiusmaximus.goto10.org
More information about the Haskell-Cafe
mailing list