我正在编写一个脚本来自动为我自己的网络服务器创建 Apache 和 PHP 的配置文件。我不想使用任何图形用户界面,如 CPanel 或 ISPConfig。
我有一些 Apache 和 PHP 配置文件的模板。Bash 脚本需要读取模板,进行变量替换并将解析的模板输出到某个文件夹中。最好的方法是什么?我可以想到几种方法。哪一个是最好的,或者可能有更好的方法来做到这一点?我想在纯 Bash 中做到这一点(例如在 PHP 中很容易)
模板.txt:
the number is ${i}
the word is ${word}
脚本.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"
顺便说一句,我如何在这里将输出重定向到外部文件?如果变量包含引号,我是否需要转义?
2) 使用 cat & sed 将每个变量替换为其值:
给定模板.txt:
The number is ${i}
The word is ${word}
命令:
cat template.txt | sed -e "s/\${i}/1/" | sed -e "s/\${word}/dog/"
对我来说似乎很糟糕,因为需要转义许多不同的符号并且有很多变量,这条线太长了。
你能想到其他一些优雅和安全的解决方案吗?