Skip to content

Instantly share code, notes, and snippets.

@epcim
Forked from caruccio/var-file-subst.sh
Created June 14, 2016 05:23
Show Gist options
  • Save epcim/28eb3a9482aa34711458facde51b891e to your computer and use it in GitHub Desktop.
Save epcim/28eb3a9482aa34711458facde51b891e to your computer and use it in GitHub Desktop.
Shell variable substitution from within a file.
##
# Just found the amazing builtin 'mapfile', perfect
# for substitution variable inside a file by its values.
##
mateus@mateus:/tmp$ cat input.txt
a = $a
b = $b
mateus@mateus:/tmp$ echo a=$a, b=$b
a=1, b=2
mateus@mateus:/tmp$ function subst() { eval echo -E "$2"; }
mateus@mateus:/tmp$ mapfile -c 1 -C subst < input.txt
a = 1
b = 2
##
# Simpler solution
##
mateus@mateus:/tmp$ EOF=EOF_$RANDOM; eval echo "\"$(cat <<$EOF
$(<input.txt)
$EOF
)\""
a = 1
b = 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment