The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Can we grep a list of all running PIDs in a file !!?? marconi Shell Programming and Scripting 1 12-20-2007 04:48 PM
How to grep a number in a file to find them in another file ahjiefreak Shell Programming and Scripting 7 12-12-2007 06:01 AM
Help with find command and list in a long format each found file alexcol Shell Programming and Scripting 5 12-10-2007 08:59 AM
How will you list only the empty lines in a file (using grep) JosephGerard UNIX for Dummies Questions & Answers 1 07-21-2005 04:19 AM
how to use the grep to find detail in a file etravels SUN Solaris 1 03-10-2004 02:03 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 11-19-2008
bill.zheng bill.zheng is offline
Registered User
  
 

Join Date: Nov 2008
Posts: 5
find grep and list file name

find . -exec grep "something" {} \;
this command only show the grep data but doesn't show the file name and path, how to show file path in this command?
  #2 (permalink)  
Old 11-19-2008
Yogesh Sawant's Avatar
Yogesh Sawant Yogesh Sawant is offline Forum Staff  
Part Time Moderator and Full Time Dad
  
 

Join Date: Sep 2006
Location: Rossem, Tazenda
Posts: 1,086
try:
Code:
find . -exec grep -H "something" {} \;

  #3 (permalink)  
Old 11-19-2008
Annihilannic Annihilannic is offline Forum Advisor  
  
 

Join Date: May 2008
Location: Sydney, Australia
Posts: 1,009
Or perhaps more efficient... or if you are using a non-GNU grep:


Code:
find . -type f | xargs grep "something"

In fact, if you were using GNU grep you may as well use -R rather than find?
  #4 (permalink)  
Old 11-19-2008
bill.zheng bill.zheng is offline
Registered User
  
 

Join Date: Nov 2008
Posts: 5
great big thank you to you both
  #5 (permalink)  
Old 11-19-2008
rbelk rbelk is offline
Registered User
  
 

Join Date: Oct 2008
Posts: 2
Or just use grep by itself, like this
grep -ril "172.17.0.0 network" *
this will recursively check from the current directory down, ignoring case, and list the files that "172.17.0.0 network" are in.
-r = recurse down from the current directory
-i = ignore the case of the argument
-l = list the file
Closed Thread

Bookmarks

Tags
grep recursive

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 11:27 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0