CurryInfo: process-3.0.0 / System.Process.system

definition:
system :: String -> IO Int
system cmd = prim_system $## escapedCmd
 where
  win       = isWindows
  -- This is a work around for GHC ticket #5376
  -- (http://hackage.haskell.org/trac/ghc/ticket/5376)
  escapedCmd = if win then '\"' : cmd ++ "\""
                      else cmd
demand:
no demanded arguments
deterministic:
deterministic operation
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
system
precedence:
no precedence defined
result-values:
_
signature:
String -> Prelude.IO Prelude.Int
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms