I want to run combined commands like:
echo hello world | nano test.txt
I've tried doing:
Process.Start ("echo", "hello world | nano test.txt");
But got no luck with that.
How do we run such processes?
You can do it with any programming language that accepts process - argument
since that you tagged "linux" you can use bash..
consider changing it if you want to use another shell