本文介绍了在Haskell中执行系统命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在Haskell中执行系统命令,例如cp somefile somedestination
?
How could I execute a system command such as cp somefile somedestination
in Haskell?
类似os.Exec
的东西.
推荐答案
Haskell 98标准提供:
The Haskell 98 standard provides:
System.system :: String
-> IO GHC.IO.Exception.ExitCode
执行命令.
新的 System.Process 库更有用,它允许可移植的输入/输出重定向等等.
The new System.Process library is more useful though, allowing for portable input/output redirection and so forth.
这篇关于在Haskell中执行系统命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!