Hello,
I was trying to combine some commands but having a little trouble.
In a single command I want to call the script dvdcoll2 and accept input from dvdcoll1. Then I want to put stdout into dvdcoll3, and stderr into dvderror. How do I string together four commands in a single line?
This is the loop I keep getting myself into:
cat dvdcoll2 < dvdcoll1 > stdout > dvdcoll3 | stderr > dvderror
Then I want to write a command line using pipes that displays all of the entries in the /etc/passwd file that contain the string smith. Is it possible to use another command that doesn't use pipes?
Thanks for any help