|
-
Be carefull when using vi for very large files.
It will fil the /var directory.
You can also use the sed command to change something :
cat MyFileToChange | sed "s/<from>/<into>/[g: optional]"
you want to change every line that begins with SQLSERVER to ORACLE
cat MyFile | sed "s/^SQLSERVER/ORACLE/"
Hope this helps
Gert
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|