http://www.perlmonks.org?node_id=999532


in reply to Re: handle special character in filename
in thread handle special character in filename

I did not get it.Could you please explain how to modify in this sed command.
  • Comment on Re^2: handle special character in filename

Replies are listed 'Best First'.
Re^3: handle special character in filename
by aitap (Curate) on Oct 17, 2012 at 15:03 UTC

    system("sed","-i","s/$org/$rep/g", $file);

    By the way, you can use Tie::File and \Q..\E constructs inside native Perl regexps (instead of sed), thus not having to run sed (which costs you another fork() and some rename operations) and being able to replace any strings containing any special sharacters.

    Sorry if my advice was wrong.