标题: [问题求助] sed如何替换指定文本中的特定字符串 [打印本页]
作者: etplus 时间: 2016-9-4 03:45 标题: sed如何替换指定文本中的特定字符串
想要批量修改Linux 的一些配置文件
对sed不是太熟悉,找到了这个比较笨的方法,修改HOSTNAME成功了
可是修改SELINUX的配置文件确出了问题- #sed -i '/HOSTNAME/d' /etc/sysconfig/network
- #echo 'HOSTNAME=testname' >> /etc/sysconfig/network
-
- #sed -i '/SELINUX/d' "/etc/selinux/config"
- #echo 'SELINUX=disablexxx' >> "/etc/selinux/config"
复制代码
- # This file controls the state of SELinux on the system.
- # SELINUX= can take one of these three values:
- # enforcing - SELinux security policy is enforced.
- # permissive - SELinux prints warnings instead of enforcing.
- # disabled - No SELinux policy is loaded.
- SELINUX=enforcing
- # SELINUXTYPE= can take one of these two values:
- # targeted - Targeted processes are protected,
- # mls - Multi Level Security protection.
- SELINUXTYPE=targeted
复制代码
- # This file controls the state of SELinux on the system.
- # enforcing - SELinux security policy is enforced.
- # permissive - SELinux prints warnings instead of enforcing.
- # disabled - No SELinux policy is loaded.
- # targeted - Targeted processes are protected,
- # mls - Multi Level Security protection.
-
-
- SELINUX=disablexxx
复制代码
修改完了,成了这样,后面的内容都被删除了。
正确的使用sed修改某个参数的方法是什么?
作者: wskwfkbdn 时间: 2016-9-4 06:42
你是在Linux环境下使用,还是win系统下使用
作者: DiamondbacK 时间: 2016-9-4 07:34
本帖最后由 DiamondbacK 于 2016-9-4 07:42 编辑
- sed -ri 's/^\s*(HOSTNAME)=.+/\1=testname/' /etc/sysconfig/network
- sed -ri 's/^\s*(SELINUX)=.+/\1=disablexxx/' /etc/selinux/config
复制代码
作者: etplus 时间: 2016-9-4 13:50
回复 3# DiamondbacK
好用多谢,试着理解理解我
作者: Batcher 时间: 2016-9-5 08:33
- sed -i '/SELINUX/d' "/etc/selinux/config"
复制代码
这个命令的意思是所有包含 SELINUX 字符串的行都会被删掉,这显然不是你希望的结果。
修改HOSTNAME成功了说明运气比较好,但这不是正确的方法。
我一般这样操作:- # 修改之前看看原始值是什么
- grep '^SELINUX=' /etc/selinux/config
- # 修改的同时保留一个备份文件
- sed -i.$(date +"%Y%m%d_%H%M%S").bak '/^SELINUX=/ s/SELINUX=.*/SELINUX=disabled/' /etc/selinux/config
- # 修改之后看看新值是什么
- grep '^SELINUX=' /etc/selinux/config
复制代码
作者: mycmd 时间: 2017-8-28 00:59
我就想知道如何用 sed 替换一个 EXE文件中的十六进制代码
原始:52 61 72 21
替换:52 60 72 21
sed -i "s/\x52\x61\x72\x21/\x52\x60\x72\x21/g" 1.exe
这样替换后的文件是坏的,用16进制编辑器修改的则正常。
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |