vote up 1 vote down star

I run the following code

sed 's/\([^ ]+\) your \([^ ]+\)/ \2\1er/' < fail

The file fail is

fail your test

The above command gives me

fail your test

although it should give "testfailer".

The second and first globs \2\1 should be at the start of the word "er". This suggests me that the problem may be in the regexes in the search part. However, they seem to be correct for me.

Do you see any mistake in the code?

flag

2 Answers

vote up 4 vote down check

Your code does work when you escape the plus signs:

sed 's/\([^ ]\+\) your \([^ ]\+\)/\2\1er/' < fail
link|flag
1  
Ah, I see now. + and () are considered extended regex features, so you enable them in 'basic' mode by backslashing them. Good to know. – chaos Apr 29 at 16:58
I did not get the code to work in OSX Leopard. – Masi Apr 29 at 17:10
@Stephan: Your code works in Ubuntu. – Masi Apr 29 at 17:26
It seems that Leopard does not even have sed which has the quantifiers +, * and ?. I did not find Gnu Sed in MacPorts. – Masi Apr 29 at 17:33
1  
The name of Gnu Sed in MacPorts is gsed. – Masi Apr 29 at 17:36
show 1 more comment
vote up 5 vote down

Common or garden variety sed regex doesn't understand +. Yeah, I know, how stupid is that. So this is an equivalent, working version of your command line:

sed 's/\([^ ][^ ]*\) your \([^ ][^ ]*\)/ \2\1er/' < fail

Also works to request extended regex, in which case you ditch the backslashes on the parens:

sed -r 's/([^ ]+) your ([^ ]+)/ \2\1er/' < fail
link|flag
Would the {1,} quantifier work? – Tomalak Apr 29 at 16:49
2  
Works in basic regex if you backslash the braces, in extended regex if you don't. – chaos Apr 29 at 16:52
1  
Backslashing the + in basic is less effort, though. :) – chaos Apr 29 at 16:52
@chaos: Thanks. :) – Tomalak Apr 29 at 17:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.