1 2 3 4 5 6 7 8
module Main where import System.Process (callProcess) import System.Environment (getArgs) main = do [arg] <- getArgs callProcess arg []