gpt4 book ai didi

haskell - 重定向标准错误流,haskell 创建过程

转载 作者:行者123 更新时间:2023-12-04 12:49:12 25 4
gpt4 key购买 nike

如何使用 createProcess在haskell 中将stderr 重定向到/dev/null ?

最佳答案

开通 /dev/nullwithFile并将其设置为 std_errCreateProcess记录:

import System.Process
import System.IO

main :: IO ()
main = withFile "/dev/null" WriteMode (\handle -> do
(_,_,_,phandle) <- createProcess (shell "echo foo"){ std_err = UseHandle handle}
waitForProcess phandle
return ())

在 Windows 中,您可以使用 NUL 文件。

关于haskell - 重定向标准错误流,haskell 创建过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41526868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com