Hi, I am doing a find and then getting a list of files. how do I pipe it to another utility like cat (so that cat displays the contents of all those files) and basically need to grep something from these files.
|
|
1) Piping to another process (Although this WON'T accomplish what you said you are trying to do):
This will send the output of command1 as the input of command2 2) Exec on a find (This will do what you are wanting to do -- but is specific to find)
(everything between find and -exec are the find predicates you were already using. {} will substitute the particular file you found into the command (cat {} in this case) the \; is to end the exec command 3) send output of one process as command line arguments to another process
for example:
(Note these are BACK-QUOTES not regular quotes (under the tilde ~ on my keyboard)) this will send the output of command1 into command2 as command line arguments. |
||
|
|
|
There are a few ways to do this. The simplest is to use backticks:
(you can also use $() instead of backticks in some shells, including bash) This takes the output of find and puts it on You can also use
This will run You can also use
This will break up the command-line if necessary. That is, if The most robust method is this:
The |
|||
|
|
|
|
Are you trying to find text in files? You can simply use grep for that...
|
||
|
|
|
|
The find command has an -exec argument that you can use for things like this, you could just do the grep directly using that. For example (from here, other good examples at this page):
|
||
|
|
|
|
If you're on Linux or have the GNU If you don't want the file names - just the text - then add an appropriate option to |
||
|
|
|
|
Sounds like a job for a shell script to me:
or something like that |
||
|
