CurryInfo: cpm-3.3.0 / CPM.ErrorLogger.showExecCmd

definition:
showExecCmd :: String -> ErrorLogger Int
showExecCmd cmd = do
  logDebug $ "Executing: " ++ cmd
  ec <- liftIOEL $ system cmd
  unless (ec == 0) $
    logDebug $ "Command terminated with non-zero exit code " ++ show ec
  return ec
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Executes a system command and shows the command as debug message.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
showExecCmd
precedence:
no precedence defined
result-values:
_
signature:
String -> ErrorLogger Prelude.Int
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term