我有一个这样的配置文件:
# Default LIST="nil"
LIST="element1 element2 element3"
从 shell 脚本修改 LIST 的最简单方法是什么?
答案1
使用sed
:
sed -i 's/LIST\=.*/LIST="element4 element5"/' config_file
如果您只想在未注释的情况下更新 LIST,请添加^
(行首):
sed -i 's/^LIST\=.*/LIST="element4 element5"/' config_file
答案2
与已接受的答案相同,但可以在脚本。如果有人发现它有用:
#! /bin/bash
# (GPL3+) Alberto Salvia Novella (es20490446e)
modifyVariableInFile () {
variable="${1}"
content="${2}"
file="${3}"
if [ ! -f "${file}" ]; then
echo "modifyVariableInFile: file doesn't exist: ${file}"
exit 1
fi
sed -i "s/^${variable}\=.*/${variable}=\"${content}\"/" "${file}"
}
modifyVariableInFile ${@}