The UNIX and Linux Forums
>
Top Forums
>
UNIX for Dummies Questions & Answers
editing sqlplus id@passwd in multiple scripts, users and directories
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Directory
Register
Forum Rules
FAQ
Contribute
Members List
Search
Today's Posts
Mark Forums Read
Thread
:
editing sqlplus id@passwd in multiple scripts, users and directories
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
3
(
permalink
)
05-08-2007
agcodba
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.
agcodba
View Public Profile
Find all posts by agcodba