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.
|
feedback
|
| |||||||||
feedback
|
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 | |||
|
feedback
|
|
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 Alternatively, you can replace
You can also use
This will break up the command-line if necessary. That is, if The most robust method is this:
The | ||||
|
feedback
|
|
Sounds like a job for a shell script to me:
or something like that | |||||||
feedback
|
|
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):
| |||
|
feedback
|
|
in bash, the following would be approprate: find /dir -type f -print0 | xargs -0i cat {} | grep whatever This will find all files in the /dir directory, and safely pipe the filenames into xargs, which will safely drive grep. Skipping xargs is not a good idea if you have many thousands of files in /dir, cat will break due to excessive argument list length. xargs will sort that all out for you. The -print0 argument to find meshes with the -0 argument to cat to handle filenames with spaces properly. the -i argument to find allows you to insert the filename where required in the cat commandline. The brackets are replaced by the filename piped into the cat command from find. | |||
|
feedback
|
|
Are you trying to find text in files? You can simply use grep for that...
| |||
|
feedback
|
|
To list and see contents of all abc.def files on a server in the directories /ghi and /jkl
To list the abc.def files which have commented entries and display see those entries in the directories /ghi and /jkl
| |||
|
feedback
|