1、复制/etc/rc.d/rc.sysinit文件至/tmp目录,将/tmp/rc.sysinit文件中的以至少一个空白字符开头的行的行首加#;
复制 [root@localhost ~]# cp -av /etc/rc.d/rc.sysinit /tmp/ "/etc/rc.d/rc.sysinit" -> "/tmp/rc.sysinit" 查看 [root@localhost ~]# sed -n ‘/^[[:space:]]\+/p‘ /tmp/rc.sysinit . /etc/sysconfig/network HOSTNAME=localhost mount -n -t proc /proc /proc ... ... 预修改 [root@localhost ~]# sed -n ‘s@\(^[[:space:]]\+\)@#\1@p‘ /tmp/rc.sysinit # . /etc/sysconfig/network # HOSTNAME=localhost # mount -n -t proc /proc /proc ... ... 修改 [root@localhost ~]# sed -i ‘s@\(^[[:space:]]\+\)@#\1@g‘ /tmp/rc.sysinit sed 格式:sed [option]... ‘script‘ inputfile... 常用选项: -n:不输出模式中的内容至屏幕 -e: 多点编辑 -f /PATH/TO/SCRIPT_FILE: 从指定文件中读取编辑脚本 -r: 支持使用扩展正则表达式 -i: 原处编辑 编辑命令: d: 删除 p: 显示模式空间中的内容 a \text:在行后面追加文本;支持使用\n实现多行追加; i \text:在行前面插入文本;支持使用\n实现多行插入; c \text:替换行为单行或多行文本; w /path/to/somefile: 保存模式空间匹配到的行至指定文件中; r /path/from/somefile:读取指定文件的文本流至模式空间中匹配到的行的行后; =: 为模式空间中的行打印行号; !: 取反条件; s///:支持使用其它分隔符,s@@@,s###; 替换标记: g: 行内全局替换; p: 显示替换成功的行; w /PATH/TO/SOMEFILE:将替换成功的结果保存至指定文件中;
2、复制/boot/grub/grub.conf至/tmp目录中,删除/tmp/grub.conf文件中的行首的空白字符;
复制 [root@localhost ~]# cp -av /boot/grub/grub.conf /tmp/ "/boot/grub/grub.conf" -> "/tmp/grub.conf" 查看 [root@localhost ~]# sed -n ‘/^[[:space:]]\+/p‘ /tmp/grub.conf root (hd0,1) kernel /boot/vmlinuz-2.6.32-431.el6.x86_64 ro root=UUID=b37281f5-b8de-4166-b335-2f383f0038d8 rd_NO_LUKS KEYBOARDTYPE=pc KEYTABLE=us rd_NO_MD crashkernel=auto LANG=zh_CN.UTF-8 rd_NO_LVM rd_NO_DM rhgb quiet initrd /boot/initramfs-2.6.32-431.el6.x86_64.img 预修改 [root@localhost ~]# sed -n ‘s/^[[:space:]]\+//p‘ /tmp/grub.conf root (hd0,1) kernel /boot/vmlinuz-2.6.32-431.el6.x86_64 ro root=UUID=b37281f5-b8de-4166-b335-2f383f0038d8 rd_NO_LUKS KEYBOARDTYPE=pc KEYTABLE=us rd_NO_MD crashkernel=auto LANG=zh_CN.UTF-8 rd_NO_LVM rd_NO_DM rhgb quiet initrd /boot/initramfs-2.6.32-431.el6.x86_64.img 修改 [root@localhost ~]# sed -i ‘s/^[[:space:]]\+//g‘ /tmp/grub.conf
3、删除/tmp/rc.sysinit文件中的以#开头,且后面跟了至少一个空白字符的行行的#和空白字符
查看 [root@localhost ~]# sed -n ‘/^#[[:space:]]\+/p‘ /tmp/rc.sysinit # /etc/rc.d/rc.sysinit - run once at boot time # Taken in part from Miquel van Smoorenburg‘s bcheckrc. # Check SELinux status ... ... 预修改 [root@localhost ~]# sed -n ‘s/^#[[:space:]]\+//p‘ /tmp/rc.sysinit /etc/rc.d/rc.sysinit - run once at boot time Taken in part from Miquel van Smoorenburg‘s bcheckrc. Check SELinux status ... ... 修改 [root@localhost ~]# sed -i ‘s/^#[[:space:]]\+//g‘ /tmp/rc.sysinit
4、为/tmp/grub.conf文件中前三行的行首加#号;
查看 [root@localhost ~]# sed -n ‘1,3p‘ /tmp/grub.conf # grub.conf generated by anaconda # # Note that you do not have to rerun grub after making changes to this file 预修改 [root@localhost ~]# sed -n ‘1,3s/^/#/p‘ /tmp/grub.conf ## grub.conf generated by anaconda ## ## Note that you do not have to rerun grub after making changes to this file 修改 [root@localhost ~]# sed -i ‘1,3s/^/#/g‘ /tmp/grub.conf
5、将/etc/yum.repos.d/CentOS-Media.repo文件中所有的enabled=0或gpgcheck=0的最后的0修改为1;
查看 [root@localhost yum.repos.d]# sed -n -e ‘/enabled=0/p‘ -e ‘/gpgcheck=0/p‘ /etc/yum.repos.d/CentOS-Media.repo gpgcheck=0 enabled=0 预修改 [root@localhost yum.repos.d]# sed -n -e ‘s@\(enabled\)=0@\1=1@p‘ -e ‘s@\(gpgcheck\)=0@\1=1@p‘ /etc/yum.repos.d/CentOS-Media.repo gpgcheck=1 enabled=1 修改 [root@localhost yum.repos.d]# sed -i -e ‘s@\(enabled\)=0@\1=1@g‘ -e ‘s@\(gpgcheck\)=0@\1=1@g‘ /etc/yum.repos.d/CentOS-Media.repo
6、每4小时执行一次对/etc目录的备份,备份至/backup目录中,保存的目录名为形如etc-201608300202
7、每周2,4,6备份/var/log/messages文件至/backup/messages_logs/目录中,保存的文件名形如messages-20160830
8、每天每两小时取当前系统/proc/meminfo文件中的所有以S开头的信息至/stats/memory.txt文件中
9、工作日的工作时间内,每两小时执行一次echo "howdy"
脚本编程练习
10、创建目录/tmp/testdir-当前日期时间;
11、在此目录创建100个空文件:file1-file100
12、显示/etc/passw d文件中位于第偶数行的用户的用户名;
13、创建10用户user10-user19;密码同用户名;
14、在/tmp/创建10个空文件file10-file19;
15、把file10的属主和属组改为user10,依次类推。
原文:http://11884010.blog.51cto.com/11874010/1850950