Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writting a script to automate creating configuration files for Apache and PHP for my own webserver. I don't want to use any GUIs like CPanel or ISPConfig.

I have some templates of Apache and PHP configuration files. Bash script needs to read templates, make variable substitution and output parsed templates into some folder. What is the best way to do that? I can think of several ways. Which one is the best or may be there are some better ways to do that? I want to do that in pure Bash (it's easy in PHP for example)

1) How to replace ${} placeholders in a text file?

template.txt:

the number is ${i}
the word is ${word}

script.sh:

#!/bin/sh

#set variables
i=1
word="dog"
#read in template one line at the time, and replace variables
#(more natural (and efficient) way, thanks to Jonathan Leffler)
while read line
do
    eval echo "$line"
done < "./template.txt"

BTW, how do I redirect output to external file here? Do I need to escape something if variables contain, say, quotes?

2) Using cat & sed for replacing each variable with it's value:

Given template.txt:

The number is ${i}
The word is ${word}

Command:

cat template.txt | sed -e "s/\${i}/1/" | sed -e "s/\${word}/dog/"

Seems bad to me because of the need to escape many different symbols and with many variables the line will be tooooo long.

Can you think of some other elegant and safe solution?

share|improve this question

10 Answers

up vote 17 down vote accepted

You can use this:

perl -p -i -e 's/\$\{([^}]+)\}/defined $ENV{$1} ? $ENV{$1} : $&/eg' template.txt

to replace all ${...} strings with corresponding enviroment variables (do not forget to export them before running this script).

For pure bash this should work (assuming that variables do not contain ${...} strings):

#!/bin/bash
while read line ; do
    while [[ "$line" =~ '(\$\{[a-zA-Z_][a-zA-Z_0-9]*\})' ]] ; do
        LHS=${BASH_REMATCH[1]}
        RHS="$(eval echo "\"$LHS\"")"
        line=${line//$LHS/$RHS}
    done
    echo $line
done
share|improve this answer
2  
I would change [^}] to [A-Za-Z_][A-Za-z0-9_] in the bash version to prevent the shell from going beyond strict substitution (e.g. if it tried to process ${some_unused_var-$(rm -rf $HOME)}). – Chris Johnsen May 26 '10 at 21:24
1  
@Chris Johnsen you are right, updated the answer. – ZyX May 27 '10 at 6:56
Is it safe if environment variable contains some quotes or backslashes or something? I mean perl version. – FractalizeR May 27 '10 at 6:57
1  
@FractalizeR you may want to change $& in the perl solution to "": first leaves ${...} untouched if it failes to substitute, second replaces it with empty string. – ZyX May 27 '10 at 7:02
1  
NOTE: Apparently a there was a change from bash 3.1 to 3.2 (and up) in which the single quotes around the regex - treat the contents of the regex as a string literal. So the regex above should be... (\$\{[a-zA-Z_][a-zA-Z_0-9]*\}) stackoverflow.com/questions/304864/… – Anthony Bouch Jun 21 '12 at 7:44
show 1 more comment

I agree with using sed: it is the best tool for search/replace. Here is my approach:

$ cat template.txt
the number is ${i}
the dog's name is ${name}

$ cat replace.sed
s/${i}/5/
s/${name}/Fido/

$ sed -f replace.sed template.txt > out.txt

$ cat out.txt
the number is 5
the dog's name is Fido
share|improve this answer
This requires temporary file for substitution string, right? Is there a way to do that without temporary files? – FractalizeR May 27 '10 at 6:45
@FractalizeR: Some versions of sed have a -i option (edit files in place) that is similar to the perl option. Check the manpage for your sed. – Chris Johnsen May 27 '10 at 7:38
Yes, I know. Thanks – FractalizeR May 27 '10 at 13:55
@FractalizeR Yes, sed -i will replace inline. If you are comfortable with Tcl (another scripting language), then check out this thread: stackoverflow.com/questions/2818130/… – Hai Vu May 27 '10 at 16:24

Try envsubst

FOO=foo
BAR=bar
export FOO BAR

envsubst <<EOF
FOO is $FOO
BAR is $BAR
EOF
share|improve this answer
Just for reference, envsubst isn't required when using a heredoc since bash treats the heredoc as a literal double-quoted string and interpolates variables in it already. It's a great choice when you want to read the template from another file though. A good replacement for the much more cumbersome m4. – beporter Apr 18 at 15:21

I'd have done it this way, probably less efficient, but easier to read/maintain.

TEMPLATE='/path/to/template.file'
OUTPUT='/path/to/output.file'

while read LINE; do
  echo $LINE |
  sed 's/VARONE/NEWVALA/g' |
  sed 's/VARTWO/NEWVALB/g' |
  sed 's/VARTHR/NEWVALC/g' >> $OUTPUT
done < $TEMPLATE
share|improve this answer

envsubst was new to me. Fantastic.

For the record, using a heredoc is a great way to template a conf file.

STATUS_URI="/hows-it-goin";  MONITOR_IP="10.10.2.15";

cat >/etc/apache2/conf.d/mod_status.conf <<EOF
<Location ${STATUS_URI}>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from ${MONITOR_IP}
</Location>
EOF
share|improve this answer

I think eval works really well. It handles templates with linebreaks, whitespace, and all sorts of bash stuff. If you have full control over the templates themselves of course:

$ cat template.txt
variable1 = ${variable1}
variable2 = $variable2
my-ip = $(curl -s ifconfig.me)
$ echo $variable1
AAA
$ echo $variable2
BBB
$ eval "echo \"$(<template.txt)\"" 2> /dev/null
variable1 = AAA
variable2 = BBB
my-ip = 11.22.33.44

This method should be used with care, of course, since eval can execute arbitrary code. Running this as root is pretty much out of the question.

You can also use here documents if you prefer cat to echo

$ eval "cat <<< \"$(<template.txt)\"" 2> /dev/null

Edit: Removed part about running this as root using sudo...

share|improve this answer

This page describes an answer with awk

awk '{while(match($0,"[$]{[^}]*}")) {var=substr($0,RSTART+2,RLENGTH -3);gsub("[$]{"var"}",ENVIRON[var])}}1' < input.txt > output.txt
share|improve this answer

Perfect case for shtpl. (project of mine, so it is not widely in use and lacks in documentation. But here is the solution it offers anyhow. May you want to test it.)

Just execute:

$ i=1 word=dog sh -c "$( shtpl template.txt )"

Result is:

the number is 1
the word is dog

Have fun.

share|improve this answer
If it's crap, it's downvoted anyway. And i'm ok with that. But ok, point taken, that it is not clearly visible, that it is actually my project. Going to make it more visible in the future. Thank you anyhow for your comment and your time. – zstegi Mar 3 at 17:20
I want to add, that i really searched for usecases yesterday, where shtpl would be a perfect solution. Yeah, i was bored... – zstegi Mar 3 at 17:58
Good edit; You have included the disclaimer, and your post contains useful information otherwise. – Andrew Barber Mar 5 at 20:13

For one approach to templating, see my answer here.

share|improve this answer

Bash-only solution without extra temporary files:

If you are OK with template.txt being evaluated as a heredoc, which does parameter expansion like ${...}, command substitution like `...` or $(...), and arithmetic expansion like $((...)), which I think would work great for Apache and PHP configuration.

$cat template.txt
the number is ${i}
the word is ${word}

$cat script.sh 
i=1 word="dog" bash <<OUTER
cat <<INNER
`cat template.txt`
INNER
OUTER

$./script.sh 
the number is 1
the word is dog

and if you need to capture the output, as far as I can tell, you need to wrap it again:

$cat script.sh 
cat <(i=1 word="dog" bash <<OUTER
cat <<INNER
`cat template.txt`
INNER
OUTER
) > outputFile

I'd welcome a way to remove a cat or two from the above :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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