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 -->
  #3 (permalink)  
Old 05-08-2007
agcodba agcodba is offline
Registered User
 

Join Date: May 2007
Posts: 10
for "search pattern" you can use:

grep -i "sqlplus.*\@"

This will find all occurrences of sqlplus, followed by any number of characters, followed by the @ sign. The backslash "\" escapes the @ sign so as not to be interpreted by the shell.
Reply With Quote