vote up 0 vote down star

I tried a search and replace across all files in a directory as follows:

/usr/bin/perl -p -i -e "s/Else/Else  FILE_WRITE(\"C:\\TestDir\\mes.txt","Message received");/g"            *.scr

That is replace all occurence of Else with "Else FILE_WRITE(\"C:\TestDir\mes_.txt","Message received");"

But the replacement is seen to be as follows:

Else  FILE_WRITE("C:TestDir^@mes.txt);

What am I missing?

flag

74% accept rate

1 Answer

vote up 5 vote down

This is actually a shell question, not a Perl question.

You need to escape the slashes in the filename, otherwise the shell will interpret them as escape sequences.

What you have right now:

$ echo "s/Else/Else FILE_WRITE(\"C:\TestDir\mes.txt","Message received");/g"
bash: syntax error near unexpected token `)'

What you want:

$ echo "s/Else/Else FILE_WRITE(\"C:\\TestDir\\mes.txt\",\"Message received\");/g"
s/Else/Else FILE_WRITE("C:\TestDir\mes.txt","Message received");/g

In the future, try to use single quotes instead of double quotes. Then you can write without escaping:

$ echo 's/Else/Else FILE_WRITE("C:\TestDir\mes.txt","Message received");/g'
s/Else/Else FILE_WRITE("C:\TestDir\mes.txt","Message received");/g

Perl's flexible q and qq operators are also helpful:

$ perl -e 'print q{A double quote looks like this -> "}'
A double quote looks like this -> "
link|flag
1  
Still after replacement the backslash is missing. The following are see in files after replacement. Else FILE_WRITE("C:TestDirmes.txt","Message received"); – Prabhu. S Sep 29 at 9:34
1  
You have to escape the slashes from Perl too. – jrockway Sep 29 at 10:03
1  
Single quotes don't mean anything to the Windows cmd.exe shell so you can't use them to quote your arguments. – Adrian Pronk Sep 29 at 23:08
A handy thing is that, in many places, Windows will accept 'C:/TestDir/mes.txt' instead of 'C:\TestDir\mes.txt'. That might make it easier to handle the quoting. – Gaurav Sep 30 at 4:28

Your Answer

Get an OpenID
or

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