3
votes
How to pipe list of files returned by find command to cat to view all the files
1) Piping to another process (Although this WON'T accomplish what you said you are trying to do):
command1 | command2
This will send the output of command1 as the …
