-
-
Save epcim/28eb3a9482aa34711458facde51b891e to your computer and use it in GitHub Desktop.
Shell variable substitution from within a file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# 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