目前我正在尝试创建一个 bash 脚本来替换我生成的新值。
这些值存储在constants.php
:
-----------constant.php : start-------------------
:
define('PASS1', 'ABCD');
define('PASS2', '1234');
:
-----------constant.php : end---------------------
运行脚本后,(使用sed
)PASS1
它应该分别更新和的值PASS 2
:
-----------constant.php : start-------------------
:
define('PASS1', 'WXYZ');
define('PASS2', '0987');
:
-----------constant.php : end---------------------
有没有办法可以找到 KEY 例如'PASS1'
并替换逗号后的值?