The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 05-08-2007
TinWalrus TinWalrus is offline
Registered User
 

Join Date: May 2007
Posts: 27
i think most unix operating systems support the following

find . -type f -exec grep -l sqlplus.*\@ {} \;

find from the current directory down, all files - execute the command 'grep -l sqlplus.*\@' on each of the files

grep -l sqlplus.*\@ displays each file name that contains sqlplus followed by any character up to the '@' sign

Last edited by TinWalrus; 05-08-2007 at 06:28 PM..
Reply With Quote