如何 运行 在 monodevelop 中组合命令

how to run combined commands in monodevelop

我想 运行 组合命令,例如:

    echo hello world | nano test.txt

我试过:

    Process.Start ("echo", "hello world | nano test.txt");

但运气不好。
我们如何运行这样的过程?

您可以使用任何接受过程 - 参数的编程语言来做到这一点
因为你标记了 "linux" 你可以使用 bash..
如果你想使用另一个 shell

请考虑改变它