Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

OR operator for searching patterns

Original Message
Name: kamalpreet
Date: July 3, 2007 at 22:37:55 Pacific
Subject: OR operator for searching patterns
OS: Solaris
CPU/Ram: Ultra 60
Model/Manufacturer: Sun
Comment:
can I use OR in searching or multiple search in one go before substitute command...someting of following sort..

:g/kamal/ g/preet/ s/me/myself/g

where I find "kamal" OR "preet" in a line I substitute "me" with "myself" in all lines matchining any of two search criterion.

Warm Regards
Kamalpreet Singh


Report Offensive Message For Removal


Response Number 1
Name: James Boothe
Date: July 5, 2007 at 13:25:11 Pacific
Subject: OR operator for searching patterns
Reply: (edit)
:g/kamal\|preet/ s/me/myself/g


Report Offensive Follow Up For Removal

Response Number 2
Name: kamalpreet
Date: July 5, 2007 at 22:46:52 Pacific
Subject: OR operator for searching patterns
Reply: (edit)
James
:g/kamal\|preet/p is not working in my cshell vi editor...
I tried it in konsole (linsx m/c) there it is working.

How can I use it on cshell vi editor.

Warm Regards
Kamalpreet Singh


Report Offensive Follow Up For Removal

Response Number 3
Name: James Boothe
Date: July 6, 2007 at 10:37:24 Pacific
Subject: OR operator for searching patterns
Reply: (edit)
Sorry, I do not know the cshell answer.

But if your cshell can successfully run the following sed:

sed -e '/kamal\|preet/ s/me/myself/g' myfile

then one way of making changes within vi is to pass a specified group of lines (one line, one paragraph, entire file) to a unix command or shell script, and that group of lines will be replaced with the output.

For example, to pass entire file to "mysed":

In vi, position yourself on line 1.
!G./mysed

./mysed is as follows:
sed -e '/kamal\|preet/ s/me/myself/g' -


Report Offensive Follow Up For Removal

Response Number 4
Name: kamalpreet
Date: July 8, 2007 at 21:46:35 Pacific
Subject: OR operator for searching patterns
Reply: (edit)
James sed is also not working in that way

I tried
"sed -e '/CAR\/PRL/ s/grenoble/Bristol/' sendfile.log"

and this command of sed does nothing...

what could be the problem?
is there another way of giving OR operator ?


Warm Regards
Kamalpreet Singh


Report Offensive Follow Up For Removal

Response Number 5
Name: James Boothe
Date: July 9, 2007 at 10:18:36 Pacific
Subject: OR operator for searching patterns
Reply: (edit)
Kamalpreet,

Yes, we can avoid the regexp OR operator by coding sed as follows:

sed -e /CAR/ba -e /PRL/ba -e b -e :a -e s/grenoble/Bristol/ sendfile.log

Here's what that sed command does:

If line contains CAR, branch to label "a".
If line contains PRL, branch to label "a".

If neither of the above branches occur, then branch to end-of-line processing, having made no changes to this line.

The command at label "a" is the change command.


Report Offensive Follow Up For Removal




Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: OR operator for searching patterns

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software




acer 312T BIOS problem

K7 Turbo possible max fsb?

Pc anywher problem

WinFLP & OE/Outlook2003

Computer resets after a few minutes


The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC