Shell脚本相关
作者:互联网
- 添加内容到文档
#1.全替代内容——多行到指定路径:
cat << EOF > /etc/motd
###################################
# APPSYSTEM: 系统的名字是啥
# SYSTEM-A: 系统管理员A角
# SYSTEM-B: 系统管理员B角
# DESCRIPTION: 这台机器干啥的
###################################
EOF
#2.追加内容——多行到指定路径:
cat << EOF >> /etc/motd
3333
EOF
#3.在文档末尾添加字段:sed -i '$a
sed -i '$aPasswordAuthentication yes' /etc/ssh/sshd_config
#4.在文档末尾添加字段:
echo "10.5.15.10 ntpserver" >> /etc/hosts
#5.在第4行插入字段:sed -i '4i
sed -i '4i\password 4444' /etc/pam.d/system-auth
#6.查询所在行,并替换所在行内容
{
result=$(cat /etc/profile | grep TMOUT | awk -F[=] '{print $2}')
if [ "$result" ];then
LIN_NUM=$(sed -n '/TMOUT/=' /etc/profile)
sed -i "$LIN_NUM"'c export TMOUT=600' /etc/profile
}
#7.多行替换
#替换“tmout=”后门20位数字为800(非数字、大于位的数字不替换)
sed -i 's/tmout=[0-9]\{1,20\}/tmout=800/g' /etc/aa
#替换“tmout=”后面为数字的为900(非数字不替换)
sed -i 's/tmout=[0-9]\+/tmout=900/g' etc/aa
#替换“tmout=”后面为任意值为32
sed -i 's/tmout=.\+/tmout=32/g' etc/aa
#.备份文件时添加当前时间
mv /etc/ntp.conf /etc/ntp.conf.bl.`date +%Y%m%d%H%M%S`
标签:脚本,aa,Shell,TMOUT,etc,tmout,sed,相关,替换 来源: https://www.cnblogs.com/Magiclala/p/16302198.html