LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 12-06-2005, 02:05 PM   #1
ronsha
Member
 
Registered: Oct 2005
Posts: 30

Rep: Reputation: 15
help with sed. newbie.


Hello.

I have a file of this type:
<name=item1 permission=1001 value=info id=345>
<name=item2 permission=1001 id=356 value=warn>
<name=item1 value=debug permission=1001 id=355>
<name=item2 permission=1010 value=info id=789>
<name=item1 permission=1100 value=blank id=222>

What I need is to write a script that will read this file and replace the value string only on item1 tags with a different string.
So in this example 3 lines ought to be changed. As you can see the value is not in a fixed location and can have different values as well.
I'm sure I can do this with sed but I'm new to this and need help.

I wrote a small script that will read the file and will output the item1 lines and will export it to a file. Obviusly I need to change my sed to search and replace rather than just print and this is where you smart people come.

Here is my script:
#!/bin/sh

if [ $# -eq 1 ]; then
full_path="$1"
else
full_path="/tmp/yar/file"
fi
if [ -f $full_path ]; then
sed -n '/item1/p' < $1 > output.log
else
echo "Invalid path $1"
exit 1
fi
 
Old 12-06-2005, 02:27 PM   #2
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Use the sed syntax s// (and maybe read man sed )
Code:
sed -e 's/item1/whatever/g' $full_path > output.log
 
Old 12-06-2005, 02:32 PM   #3
ronsha
Member
 
Registered: Oct 2005
Posts: 30

Original Poster
Rep: Reputation: 15
Thanks Keefaz.

I have read man sed and tried a few things.
Wouldn't your solution replace the string item1 with whatever? Sorry for not being very clear. What I need is to replace the value string on item1 lines. something like this:
before sed- <name=item1 permission=1001 value=info id=345>
after sed - <name=item1 permission=1001 value=whatever id=345>

The value will change only on item1 lines but the rest is the same including the item1 string.
 
Old 12-06-2005, 02:39 PM   #4
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
This one will do :
Code:
sed -e 's/\(.*item1.*value=\)\(.*\) \( .*\)/\1whatever \3/' $full_path > output.log
I am not a sed expert though, maybe it can be shortcutted

Last edited by keefaz; 12-06-2005 at 02:43 PM. Reason: Ajusted slightly the sed regexp
 
Old 12-06-2005, 02:50 PM   #5
ronsha
Member
 
Registered: Oct 2005
Posts: 30

Original Poster
Rep: Reputation: 15
thanks again.
tried it but it didn't work (copied the entire file to the output file without a change)

You may have something there though. I'll try to understand your regular expression and hopefully find out what's wrong.
 
Old 12-06-2005, 02:56 PM   #6
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Maybe this one ?
Code:
sed -e 's/\(.*item1.*value=\)\([^ ]\+\) \(.*\)/\1whatever \3/' $full_path > output.log
.* : matches any character
[^ ]\+ : matches a word
 
Old 12-06-2005, 03:05 PM   #7
ronsha
Member
 
Registered: Oct 2005
Posts: 30

Original Poster
Rep: Reputation: 15
yep ! that one did the trick.

Now all i have to do is to understand everything you did there...

Thanks a lot.
 
Old 12-06-2005, 03:12 PM   #8
keefaz
LQ Guru
 
Registered: Mar 2004
Distribution: Slackware
Posts: 6,552

Rep: Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872Reputation: 872
Note that it works only if name=item1 is placed before value=
It won't work with a line like :
<permission=1001 value=info id=345 name=item1>

Here I can't think how deal with sed, but in perl, I could do :
Code:
perl -p -e 's/value=([^ ]+)/value=whatever/ if /item1/;' $full_path > output.log
This way, item1 can be located anywhere in the line

Last edited by keefaz; 12-06-2005 at 03:14 PM.
 
Old 12-06-2005, 03:26 PM   #9
ronsha
Member
 
Registered: Oct 2005
Posts: 30

Original Poster
Rep: Reputation: 15
I see. in my case the item will always be the first thing.

I really need to learn the basics of regular expressions as it looks like ancient chineese to me now..lol...

Appriciate your help.
 
Old 12-14-2005, 10:07 PM   #10
WindowBreaker
Member
 
Registered: Oct 2005
Distribution: Slackware
Posts: 228

Rep: Reputation: 40
A simple sed solution

sed '/item1/s/value=[^ ]*/value=whatever/g' <inputfile>

The '/item1/' means to only do the following command on lines that contain the string "item1" (it's an address in sed terms).

's' is a search & replace command.
/value=[^ ]*/ will match 'value=' followed by non-whitespace characters.
/value=whatever/g will globally (all occurrences, not just the first) replace it with value=whatever.

The g (global) flag isn't necessary if there's only one value=something per line.

Sed's man page sucks. So does it's info page. It took me a while to find a good thorough tutorial, but here's the link if you're interested:
http://www.grymoire.com/Unix/Sed.html

I hope that helps.

Pablo
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
using sed ilnli Linux - General 3 07-01-2005 03:59 PM
sed benobi Linux - Newbie 8 05-17-2005 03:44 PM
sed and escaping & in something like: echo $y | sed 's/&/_/g' prx Programming 7 02-03-2005 11:00 PM
Sed q? ky-lab_rat Linux - Software 5 10-26-2004 07:59 AM
Insert character into a line with sed? & variables in sed? jago25_98 Programming 5 03-11-2004 06:12 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 12:29 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration