definition:
|
execCommandWithPath :: ReplState -> String -> [String]
-> IO (Maybe ReplState)
execCommandWithPath rst cmd args = do
let setpath = "CURRYPATH=" ++
intercalate [searchPathSeparator] (loadPaths rst) ++
" && export CURRYPATH && "
syscmd = setpath ++ cmd ++ ' ' : unwords args
writeVerboseInfo rst 2 $ "Executing: " ++ syscmd
system syscmd >> return (Just rst)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Execute some command (first argument) with some arguments (second argument).
-- The current load path is exported to the command via the environment
-- variable CURRYPATH.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
execCommandWithPath
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
REPL.State.ReplState -> String -> [String]
-> Prelude.IO (Prelude.Maybe REPL.State.ReplState)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|