blob: 0be800812727fd78d4df67f8234a5cfb7efe795e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
-----------------------------------------------------------------------------
-- |
-- Module : System.Cmd
-- Copyright : (c) The University of Glasgow 2001
-- License : BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer : libraries@haskell.org
-- Stability : provisional
-- Portability : portable
--
-- Executing a command.
--
-----------------------------------------------------------------------------
module System.Cmd
( system -- :: String -> IO ExitCode
) where
import Prelude
import System.Exit
import Foreign.C
#ifdef __GLASGOW_HASKELL__
import GHC.IOBase
#endif
-- ---------------------------------------------------------------------------
-- system
-- Computation `system cmd' returns the exit code
-- produced when the operating system processes the command `cmd'.
-- This computation may fail with
-- PermissionDenied
-- The process has insufficient privileges to perform the operation.
-- ResourceExhausted
-- Insufficient resources are available to perform the operation.
-- UnsupportedOperation
-- The implementation does not support system calls.
system :: String -> IO ExitCode
system "" = ioException (IOError Nothing InvalidArgument "system" "null command" Nothing)
system cmd =
withCString cmd $ \s -> do
status <- throwErrnoIfMinus1 "system" (primSystem s)
case status of
0 -> return ExitSuccess
n -> return (ExitFailure n)
foreign import ccall unsafe "systemCmd" primSystem :: CString -> IO Int
|