definition:
|
checkForCommand :: String -> String -> IO (Maybe ReplState)
-> IO (Maybe ReplState)
checkForCommand cmd errmsg continue = do
excmd <- system $ "which " ++ cmd ++ " > /dev/null"
if (excmd>0) then skipCommand errmsg
else continue
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Check whether some system command is available. If it is not available,
-- skip the command with the given error message, otherwise continue with
-- the last argument.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
checkForCommand
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> String -> Prelude.IO (Prelude.Maybe REPL.State.ReplState)
-> 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
|