在 Haskell 中执行系统命令
我如何在 Haskell 中执行诸如 cp somefile somedestination 之类的系统命令?
类似于 os.Exec 的东西。
How could I execute a system command such as cp somefile somedestination
in Haskell?
Something like an os.Exec
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Haskell 98 标准规定:
执行命令。
新的
System.Process
库更有用,允许便携式输入/输出重定向等。The Haskell 98 standard provides:
which executes a command.
The new
System.Process
library is more useful though, allowing for portable input/output redirection and so forth.正常工作,但您可能更喜欢 System.Process 模块中的其他功能。
just works, but you may prefer other functions from the
System.Process
module.我不是 haskell 爱好者,但是 这可能就是您要找的
I'm not a haskell buff, but this may be what you're looking for
如果你经常做这种事情,那么值得一看http://hackage.haskell。 org/package/HSH.
If you do this sort of thing a lot then it's worth having a look at http://hackage.haskell.org/package/HSH.