I've got a file with various wildcards in it that I want to be able to substitute from a (bash) shell script. I've got the following which works great until one of the variables contains characters that are special to regexes:

VERSION="1.0"
perl -i -pe "s/VERSION/${VERSION}/g" txtfile.txt   # no problems here

APP_NAME="../../path/to/myapp"
perl -i -pe "s/APP_NAME/${APP_NAME}/g" txtfile.txt  # Error!

So instead I want something that just performs a literal text replacement rather than a regex. Are there any simple one-line invocations with perl or another tool that will do this?

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

How about the following:

perl -i -pe "s|APP_NAME|${APP_NAME}|g" txtfile.txt

Since a vertical bar is not a legal character as part of a path, you are good to go.

link|improve this answer
1  
Excellent, that did the trick! I was forgetting that the regexp in itself wasn't the problem, rather the whole substitution command, so changing the delimiter worked. – the_mandrill Nov 1 '11 at 18:16
until you get a $, & – sehe Nov 1 '11 at 18:21
On Unix, | is a valid path character. In fact, all characters other than NUL (\0) are valid (if uncommon) in filenames on Unix. Which is why you should simply use the built-in quotation mechanism, as Borodin suggests below. – Søren Løvborg Dec 28 '11 at 12:41
feedback

The 'proper' way to do this is to escape the contents of the shell variables so that they aren't seen as special regex characters. You can do this in Perl with \Q, as in

s/APP_NAME/\Q${APP_NAME}/g

but when called from a shell script the backslash must be doubled to avoid it being lost, like so

perl -i -pe "s/APP_NAME/\\Q${APP_NAME}/g" txtfile.txt

But I suggest that it would be far easier to write the entire script in Perl

link|improve this answer
feedback

You can use a regex but escape any special characters.

Something like this may work.

APP_NAME="../../path/to/myapp"
APP_NAME=`echo "$APP_NAME" | sed -e '{s:/:\/:}'`
perl -i -pe "s/APP_NAME/${APP_NAME}/g" txtfile.txt
link|improve this answer
feedback

 perl -i -pe "s/APP_NAME/\Q${APP_NAME}\E/g" txtfile.txt

For some reason that didn't quite work as advertised. This variation does seem to work, though:

 perl -i -pe "\$r = qq/\Q${APP_NAME}\E/; s/APP_NAME/\$r/go"

rationale: http://perldoc.perl.org/perlre.html#Escape-sequences

link|improve this answer
feedback

You don't have to use a regular expression for this:

perl -pe '
  foreach $var ("VERSION", "APP_NAME") {
    while (($i = index($_, $var)) != -1) {
      substr($_, $i, length($var)) = $ENV{$var};
    }
  }
'

Make sure you export your variables.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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