vote up 2 vote down star
1

Dear lazyweb,

I have encountered a most annoying problem that occurs on the PWD variable when the current path includes a space. My code looks somewhat like this:

mycommand |sed -E '  
 s|mystuff|replacement| ;  
 s|'$(pwd)'|replacement| ;  
 '

This works great, unless the current path contains a space character. If it does, $(pwd) is expanded to

'mypath/with space'
instead of just
mypath/with space

This cause the sed expression to be messed up (because of the extra quotes):

sed: 1: "s|mypath/with": unterminated substitute pattern

I have noticed that it doesn't help to expand pwd like this: ${PWD//\'/}.

Any ideas on how this can be solved?

flag

60% accept rate
Is that really the command? Variables aren't expanded inside single-quotes, so I can't see how $(pwd) in the above would be getting expanded at all. – Laurence Gonsalves Sep 7 at 9:54
Thanks for pointing that out. I've added the missing quotes. – Ludvig A Norin Sep 7 at 9:57
Have you tried using the equivalent environment variable ($PWD) instead of command substitution to see if it makes a difference? – Dennis Williamson Sep 7 at 10:42
As is explained in the question, yes. The contents of the variable is what is returned by the pwd command (including the single-quotes). – Ludvig A Norin Sep 7 at 11:15

2 Answers

vote up 1 vote down check

Replace single quotes by double quotes and replace quotes with backquotes around pwd:

mycommand | sed -E "
 s|mystuff|replacement| ;
 s|`pwd`|replacement| ;
"

Double quotes allow expansion of variables and backquoted commands.

link|flag
This will work. Great! – Aviator Sep 7 at 10:14
1  
You used a variable where the OP used command substitution, but it works if you change it to match (or if you use it as is in the appropriate situation). – Dennis Williamson Sep 7 at 10:23
This will not work, as $(pwd) will be expanded to 'mypath/with space', which won't match in the sed expression. If I used ${PWD//\'/} this would work, though. – Ludvig A Norin Sep 7 at 10:24
@Ludvig: I'm not getting the single quotes when I try this. – Dennis Williamson Sep 7 at 10:29
1  
To be clear, the solution is to use double-quotes around the sed expression, and to use the PWD environment variable, removing single-quotes, instead of the pwd builtin which will produce single-quotes still: mycommand | sed -E " s|${PWD//\'/}|replacement " – Ludvig A Norin Sep 7 at 13:58
show 1 more comment
vote up 1 vote down

what happens if you replace

'$(pwd)'

with

'"$(pwd)"'

would look like this then:

mycommand | sed -E '  
 s|mystuff|replacement| ;  
 s|'"$(pwd)"'|replacement| ;  
 '
link|flag
You have a double quote out of place in the line following "with" – Dennis Williamson Sep 7 at 10:26
oh well... may i have an old version of sed? i don't even have the option -E, only -e. I've checked using the following command: echo PART1$(pwd)PART2| sed -e 's|PART1|replaced| ; s|'"$(pwd)"'|PATH|;' ; and the output is replacedPATHPART2 – Atmocreations Sep 7 at 10:31
No, compare the line I mentioned with the next-to-last line. It's just a typo. – Dennis Williamson Sep 7 at 10:33
1  
The typo is fixed. – mouviciel Sep 7 at 11:53
thanks, haven't seen it though :P – Atmocreations Sep 7 at 12:11

Your Answer

Get an OpenID
or

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