马哥教育网络班21期+第6周课程练习

请详细总结vim编辑器的使用并完成以下练习题

1、复制/etc/rc.d/rc.sysinit文件至/tmp目录,将/tmp/rc.sysinit文件中的以至少一个空白字符开头的行的行首加#;

[root@localhost ~]# cp /etc/rc.d/rc.sysinit /tmp

[root@localhost tmp]# vim rc.sysinit

末行模式

:%s/^[[:space:]]/#&/

2、复制/boot/grub/grub.conf至/tmp目录中,删除/tmp/grub.conf文件中的行首的空白字符;

[root@localhost tmp]# cp /boot/grub/grub.conf /tmp
[root@localhost tmp]# vim grub.conf

末行模式

:%s/^[[:space:]]\+//g

3、删除/tmp/rc.sysinit文件中的以#开头,且后面跟了至少一个空白字符的行行的#和空白字符

[root@localhost tmp]# vim rc.sysinit

末行模式

:%s/^#[[:space:]]\+//g


4、为/tmp/grub.conf文件中前三行的行首加#号;

[root@localhost tmp]# vim grub.conf

末行模式

:1,3s/^/#&/


5、将/etc/yum.repos.d/CentOS-Media.repo文件中所有的enabled=0或gpgcheck=0的最后的0修改为1;

[root@localhost tmp]# vim /etc/yum.repos.d/CentOS-Media.repo

末行模式

:%s/enabled=0/enabled=1/

%s/gpgcheck=0/gpgcheck=1/


6、每4小时执行一次对/etc目录的备份,备份至/backup目录中,保存的目录名为形如etc-201504020202

 *  */4  *  *  *  cp -r /etc  /backup/etc-$(date  +%Y%m%d%H%m)


7、每周2,4,6备份/var/log/messages文件至/backup/messages_logs/目录中,保存的文件名形如messages-20150402

*  *  *  *  2,4,6  cp /var/log/messages  /backup/messages_logs/messages-`date +%Y%m%d`


8、每天每两小时取当前系统/proc/meminfo文件中的所有以S开头的信息至/stats/memory.txt文件中

*  * /2 *  *  * egrep -o "^s" /proc/meminfo  >>  /stats/memory.txt


9、工作日的工作时间内,每两小时执行一次echo "howdy"

* 9-17 /2 *  *  */1-5  echo "howdy"


脚本编程练习

10、创建目录/tmp/testdir-当前日期时间

#!/bin/bash/
#

mkdir /tmp/testdir-$(date +%c)

[root@localhost tmp]# ll

drwxr-xr-x. 2 root root  4096 7月  31 09:52 testdir-2016年07月31日


11、在此目录创建100个空文件:file1-file100

#!/bin/bash/
#
for i in {1..100}; do
    touch  /tmp/testdir/file$i
done

[root@localhost ~]# bash -x /tmp/mkdir.sh
+ for i in '{1..100}'
+ touch /tmp/file1
+ for i in '{1..100}'
+ touch /tmp/file2

…….

+ for i in '{1..100}'
+ touch /tmp/file100


12、显示/etc/passwd文件中位于第偶数行的用户的用户名;

#!/bin/bash

#

cut -d : -f1 /etc/passwd | sed -n 'n;p'


13、创建10用户user10-user19;密码同用户名;

#!/bin/bash

#

    for i in {10..19}; do
        if id user$i &> /dev/null; then
                      echo "user$i exists."
        else
                     useradd 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;

#!/bin/bash/
#
for i in {10..19}; do
    touch  /tmp/file$i
done


15、把file10的属主和属组改为user10,依次类推。

#!/bin/bash/
#
for i in {10..19}; do
    chown user$i:user$i file$i
done


原创文章,作者:lelex,如若转载,请注明出处:http://www.178linux.com/26373

(0)
lelexlelex
上一篇 2016-08-02
下一篇 2016-08-02

相关推荐

  • HTTP

    使用CentOS 7和CentOS 6实现以下任务 配置四个基于名称的虚拟主机;discuzXwordpressdrupal1.在conf.d下新建并编辑虚拟主机配置文件]# cd /etc/httpd/conf.d/]# vim vhost.confcentos6配置   [root@ _93_ conf.d]#&n…

    Linux干货 2016-10-12
  • linux 文本处理工具 grep cut sort等

    linux day 7 间歇性回忆 自动属于这个组 是  SGID 的功能 chmod g+s /data/testdir setfacl —m g:g2:rwx /data/testdir setfacl -m b:g:g2:rwx /data/testdir setfacl -m d:g:g3:r testdir chmod o= testdi…

    Linux干货 2016-08-08
  • 利用heartbeat构建高可用http

    一、实验准备:  1)实验环境:          2)同步时间;确保可以使用主机名通信;确保可以使用ssh秘钥方式进行彼此登录;由于是两台设备,需要仲裁;  确保可以使用主机名通信 web1修改hosts文件如下: 172.16.2.12 web1.linux.com…

    Linux干货 2015-07-08
  • Linux基础知识之文本处理三剑客sed

    处理文本的工具sed     1.sed是一种流编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”。接着用sed命令处理缓冲区中的内容,完成处理后,把缓冲区中的内容送往屏幕。接着处理下一行,这样不断重复,直到文件末尾。文件内容并没有改变,除非你使用重定向存储输出。sed主要用来自动编…

    Linux干货 2016-08-11
  • Shell脚本编程—函数

    函数:     把一段独立功能的代码当作一个整体,并命名一个名字;命名的代码段,此即为函数     由若干条shell命令组成的语句块,实现代码重用和模式化编程 函数的作用:     在某些场景下,我们可以将独立功能的一段代码定义为一个函数…

    Linux干货 2016-08-24
  • 第一周作业

    一、计算机的基本组成和功能   cpu包括运算器、控制器、寄存器、缓存       运算器:计算功能,对数据进行加工处理的的部件;       控制器:负责从存储器取出指令,控制cpu计算器之间的运行结果和状态;       寄存器:暂存指令和数据的地方,存储…

    Linux干货 2016-12-04

评论列表(1条)

  • 马哥教育
    马哥教育 2016-09-07 23:07

    博客作业写得不错,crontab部分需要注意一下,6,7,8,9题时间需要精确在分钟,加油!