标签: c# terminal console stdout stdin
我正在尝试通过C#执行外部应用程序。
我希望将stdin 传递到已启动的应用程序中,然后捕获结果。
stdin
等效的bash命令是:
echo Typist 1 . 0 | figlet-2.2.5/figlet -f Slant
在C#中,如何运行上述命令并将其stdout存储到变量中?
stdout
我尝试使用Process.Start("figlet-2.2.5/figlet", "-f Slant"),但这不起作用,因为应用程序:
Process.Start("figlet-2.2.5/figlet", "-f Slant")