Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bash quoting of current path (pwd)

Tags:

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//\'/}.

How can this be solved?

like image 222
Ludvig A. Norin Avatar asked Sep 07 '09 09:09

Ludvig A. Norin


1 Answers

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.

like image 50
mouviciel Avatar answered Oct 12 '22 01:10

mouviciel