I have this line that I want to use sed on:
--> ASD = $start ( *.cpp ) <--
where $start is not a varaiable, I want to use sed on it and replace all this line with:
ASD = $dsadad ( .cpp )
How can I make sed ignore special charactars, I tried adding back slash before special characters, but maybe I got it wrong, can some one show me an example?
Here is what i want :
sed 's/CPPS = \$(shell ls | grep \*\.cpp )/somereplace/' Makefile
The chacters
$
,*
,.
are special for regular expressions, so they need to be escaped to be taken literally.Backslash works fine.
echo '*.cpp' | sed 's/\*//'
=>.cpp
If you're in a shell, you might need to double escape
$
, since it's a special character both for the shell (variable expansion) and for sed (end of line)echo '$.cpp' | sed "s/\\$//"
orecho '$.cpp' | sed 's/\$//'
=> '.cpp'Do not escape
(
or)
; that will actually make them them special (groups) in sed. Some other common characters include[
]
\
.
?
This is how to escape your example:
To follow your edit :
Add the -i (--inplace) to edit the input file.