我正在寻找一个命令行命令或一个简单的脚本来在/ var / www / html / bugzilla / data / param文件中设置“ shutdownhtml”。

从...

       'shutdownhtml' => '',


至....

       'shutdownhtml' => 'Archiving DB and Bugzilla config... It could takes 5 min or longer.',


确实尝试过使用“ sed”,但是上面的配置以某种方式使用了“单打开”引号',因此似乎“ sed”无法执行此操作... ??

感谢您的帮助。

最佳答案

感谢ThorstenSchöning。他提供了一个解决方案。

sed --regexp-extended's /(。)shutdownhtml \ 1(\ s +)=>(\ s +)\ 1 {2},/ \ 1shutdownhtml \ 1 \ 2 => \ 3 \ 1someText \ 1,/'参数> params.shutdown

请参阅下面的链接以获取更多信息
http://mozilla.6506.n7.nabble.com/Command-or-Script-to-add-text-to-parameter-shutdownhtml-in-param-file-td279974.html

关于linux - Bugzilla +命令或脚本可将文本添加到参数文件中的参数“shutdownhtml”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16583934/

10-11 19:44