|
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..
|