假设有如下属性文件 file.conf
user.name=test
user.password=123456
通过shell 脚本将 user.name 和 user.password 的value值替换为实际需要的用户名和密码,
sed -i “s#^user.name=.#user.name=用户名#g" path/to/file.conf
sed -i "s#^user.password=.#user.password=密码#g” path/to/file.conf
假设有如下属性文件 file.conf
user.name=test
user.password=123456
通过shell 脚本将 user.name 和 user.password 的value值替换为实际需要的用户名和密码,
sed -i “s#^user.name=.#user.name=用户名#g" path/to/file.conf
sed -i "s#^user.password=.#user.password=密码#g” path/to/file.conf