find | xargs cat


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting find | xargs cat
# 1  
Old 03-17-2009
find | xargs cat

Hi,

I am having trouble getting a combination of commands to work.

I need to traverse through all sub-directories of a certain directory and 'cat' the contents of a particular file in the sub-directories.

The commands on their own work but when I combine them I get no output.

The command I am trying to get working is:
find . -type f -name "developer.txt" | xargs cat

The find command works correctly and when I copy and paste the output of that with a preceeding 'cat', the contents are printed out. However together with the pipe the commands are not working.
# 2  
Old 03-17-2009
1) Your command seems for work for me under Linux and Solaris

2) The find command has its own execution capability (-exec).

Thus you may want to try ...

Code:
find . -type f -name "developer.txt" -exec cat {} \;

# 3  
Old 03-17-2009
That worked, but need filename output

Thanks for that Wabard.

That worked a treat for command. I'm trying to run this on SuSe Linux.
I have just added another option to the find command so I know which file is being 'cat'ed.

find . -type f -name "developer.txt" -ls -exec cat {} \;

Cheers,
Dave.
# 4  
Old 03-17-2009
for one, wouldn't either less or more (or even view) serve better than cat? I'm assuming it's more of an interactive session you're looking for...? While find does allow for its own -exec parameter, xargs is faster by a long-shot.

However, it reads as though your problem is more so with the terminal than the shell commands...

Quote:
find command works correctly and when I copy and paste the output of that with a preceeding 'cat'
Have you tried to wrap the whole mess into a simple script like the following:

Code:
for item in $(find . -type f -name "developer.txt" ) ;do cat $item ;done

This will just do a massive screen dump, which I doubt is what you'd want... Swapping in other utils, like less, more or view will retain some composure and allow you to view and/or exit the file(s) individually.
# 5  
Old 03-17-2009
Lightbulb An alternate method to include formatting the filename...

Quote:
Originally Posted by DownunderDave
Thanks for that Wabard.

I have just added another option to the find command so I know which file is being 'cat'ed.
Regarding your requirement for the filename to be output, please note the following should handle your full requirements and should be compatible with all U**X flavors... (I've searched for *.c in my example).

Code:
find . -type f -name "*.c" -exec awk 'BEGIN{s="====================="} {if(n++<1){printf("%s %s %s\n",s,FILENAME,s)}else{print}}' {} \;

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Single line backups with find or cat and xargs, etc

Hi, I'm new here and this is my first post. I used command line Unix at work for 3 years... about 10 years ago! Now I can't figure out nor hunt down examples of how to do the following: Say I built a list of file to backup like this: find ~ -name "*.pdf" -print >> MYPDF.txt So I am using find... (6 Replies)
Discussion started by: hwilliam777
6 Replies

2. Shell Programming and Scripting

Help with find, xargs and awk

Hi, I want to find some files and then search for some lines in it with a particular pattern and then write those lines into a file. To do this I am using something like this from command prompt directly. cd /mdat/BVG find -name "stmt.*cl" -newer temp.txt | xargs -i awk '/BVG-/{print}' {} >... (7 Replies)
Discussion started by: Sandhya Harsh
7 Replies

3. Shell Programming and Scripting

xargs vs exec with find:

Hi All, i'm trying to create a tar of all the .txt files i find in my dir . I've used xargs to acheive this but i wanted to do this with exec and looks like it only archives the last file it finds . can some one advice what's wrong here : find . -type f -name "*.txt" -print0 | xargs -0... (9 Replies)
Discussion started by: Irishboy24
9 Replies

4. UNIX for Dummies Questions & Answers

find/xargs/*grep: find multi-line empty "try-catch" blocks - eg, missing ; not in a commented block

How can I recursively find all files in a directory and print out the file and first line number of any text blocks that match the below cases? This would seem to involve find, xargs, *grep, regex, etc. In summary, I want to find so-called empty "try-catch blocks" that do not contain code... (0 Replies)
Discussion started by: lifechamp
0 Replies

5. Shell Programming and Scripting

Xargs + Find Help

Guys i want to run a command to list all directories that havn't been modified in over 548 days ( 1.5 yrs ). Id like to run a script to first print what the command finds ( so i get a list of the files pre move ... i have a script set for this : find /Path/Of\ Target/Directory/ -type d -mtime... (4 Replies)
Discussion started by: modulartention
4 Replies

6. UNIX for Dummies Questions & Answers

Help on cat filelist.txt |xargs -n1 find

I am trying to find all the files listed in a filelist.txt. Why cant I use something like this cat filelist.txt | xargs -n1 find $path (2 Replies)
Discussion started by: dragonpoint
2 Replies

7. Shell Programming and Scripting

find and xargs

hi, i've been trying to figure this weird error but I cannot seem to know why. I am using below find command: find . \( ! -name . -prune \) -type f -mtime +365 -print The above code returns no file because no files are really more then 365 days old. However, when I use xargs, its... (9 Replies)
Discussion started by: The One
9 Replies

8. UNIX for Dummies Questions & Answers

XARGS and FIND together

I am trying to delete files older than 60 days from a folder: find /myfolder/*.dat -mtime +60 -exec rm {} \; ERROR - argument list too long: find I can't just give the folder name, as there are some files that I don't want to delete. So i need to give with the pattern (*.dat). I can... (3 Replies)
Discussion started by: risshanth
3 Replies

9. Shell Programming and Scripting

Problem using find and xargs

I'm using Imagemagick to create thumbnails for a large directory tree. The only thing I can't see is how to get it to write the thumbnails to a "thumbs" subdirectory! Either of these two commands from the Imagemagick site does most of the job: find -name '*.jpg' | xargs -n1 sh -c 'convert $0... (5 Replies)
Discussion started by: quixote
5 Replies

10. Shell Programming and Scripting

find | xargs cat

Hai I just want to find a file *.txt in particular direcotry and display the file name puls the content. Do someone know hot to do this, thanks. I try : find test/ -name '*.txt' | xargs cat but It does'nt print out the file name, i want something below print out in my screen : test/1.txt... (4 Replies)
Discussion started by: asal_email
4 Replies
Login or Register to Ask a Question