请详细总结vim编辑器的使用并完成以下练习题
1、复制/etc/rc.d/rc.sysinit文件至/tmp目录,将/tmp/rc.sysinit文件中的以至少一个空白字符开头的行的行首加#;
[root@localhost ~]# cp /etc/rc.d/rc.sysinit /tmp/rc.sysinit [root@localhost tmp]# vim rc.sysinit:%s@^[[:space:]]\+@#&@g:%s/^[[:space:]]\+/#&/
2、复制/boot/grub/grub.conf至/tmp目录中,删除/tmp/grub.conf文件中的行首的空白字符;
[root@localhost tmp]# cp /boot/grub/grub.conf /tmp/grub.conf [root@localhost tmp]# vim grub.conf :%s/^[[:space:]]\+//g
3、删除/tmp/rc.sysinit文件中的以#开头,且后面跟了至少一个空白字符的行行的#和空白字符
[root@localhost ~]# cp /etc/rc.d/rc.sysinit /tmp/rc.sysinit [root@localhost tmp]# vim rc.sysinit:%s@^#[[:space:]]\+@@g
4、为/tmp/grub.conf文件中前三行的行首加#号; [root@localhost ~]# cp /boot/grub/grub.conf
[root@localhost ~]# cp /boot/grub/grub.conf /tmp/grub.conf [root@localhost tmp]# vim grub.conf:1,3s@.*@#&@g
5、将/etc/yum.repos.d/CentOS-Media.repo文件中所有的enabled=0或gpgcheck=0的最后的0修改为1;
[root@localhost ~]# vim /etc/yum.repos.d/CentOS-Media.repo :%s@=[0-1]@=1@g
6、每4小时执行一次对/etc目录的备份,备份至/backup目录中,保存的目录名为形如etc-201504020202
[root@localhost ~]# crontab -e * */4 * * * cp -rf /etc /backup/etc-`date +\%Y\%m\%d\%H\%M`
7、每周2,4,6备份/var/log/messages文件至/backup/messages_logs/目录中,保存的文件名形如messages-20150402
[root@localhost ~]# crontab -e 1 * * * 2,4,6 cp /var/log/messages /backup/messages_logs/messages-`date +\%Y\%m\%d`
8、每天每两小时取当前系统/proc/meminfo文件中的所有以S开头的信息至/stats/memory.txt文件中
[root@localhost ~]# crontab -e * */2 * * * grep "^s" /proc/meminfo >> /stats/memory.txt
9、工作日的工作时间内,每两小时执行一次echo "howdy"
[root@localhost ~]# crontab -e * */2 * * 1,2,3,4,5 echo "howdy"
脚本编程练习
10、创建目录/tmp/testdir-当前日期时间;
#/bin/bash #mkdir -p /tmp/testdir-`date +\%Y\%m\%d\%H\%M`
11、在此目录创建100个空文件:file1-file100
#/bin/bash #for i in {1..100};do mkdir -p file$i done
12、显示/etc/passwd文件中位于第偶数行的用户的用户名;
#!/bin/bash sed -n 'n;p' /etc/passwd | cut -d: -f1 >> /tmp/user.txt [root@localhost tmp]# cat /tmp/user.txtbin adm sync halt uucp games ftp dbus vcsa rtkit abrt nfsnobody gdm apache postfix sshd
13、创建10用户user10-user19;密码同用户名;
for i in {10..19}; do if id user$i &> /dev/null; then echo "user$i exists."elseuseradd user$i if [ $? -eq 0 ]; then echo "user$i" | passwd --stdin user$i &> /dev/null echo "Add user$i finished."fi fi done
14、在/tmp/创建10个空文件file10-file19;
for i in {10..19}; do if [ -d /tmp/file$i ]; then echo "file$i exists."else mkdir -p /tmp/file$ if[ $? -eq 0 ]; then echo "Add file$i finished." fi fi done
15、把file10的属主和属组改为user10,依次类推。
#!/bin/bash for i in {10..19}do chown user$i:user$i file$i done
原创文章,作者:N21_ Dominic,如若转载,请注明出处:http://www.178linux.com/27817
评论列表(1条)
命令,跟vim命令模式混合在一起了,希望能耐心点