通过 bash 替换配置文件中的值
我必须通过 bash 脚本替换 rhel 配置文件中包含的数值:
auth required pam_tally2.so onerr=fail deny=5 even_deny_root unlock_time=600 root_unlock_time=600
只要这些值不相同,我就无法匹配模式。如何查找并替换(例如)unlock_time=600 为 unlock_time=1000?
I have to replace the numeric values contained into a rhel configuration file through a bash script:
auth required pam_tally2.so onerr=fail deny=5 even_deny_root unlock_time=600 root_unlock_time=600
As long as these values are not the same, I'm unable to match a pattern. How can I find and replace (for example) unlock_time=600 with unlock_time=1000?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 sed
Using
sed
这是解决方案:
Here is the solution: