I'm trying to do something like this:
sed 's/#REPLACE-WITH-PATH/'`pwd`'/'
Unfortunately, I that errors out:
sed: -e expression #1, char 23: unknown option to `s'
Why does this happen?
|
|
|
|
|
|
|
You need to use a different character instead of
because |
||
|
|
|
|
The problem is one of escaping the output of |
||
|
|
|
|
instead of fumbling around with quotes like that, you can do it like this
or just bash
|
||
|
|