美文网首页
马哥Linux第五周

马哥Linux第五周

作者: Liang_JC | 来源:发表于2020-03-19 16:16 被阅读0次

    Q1、查找/etc目录下大于1M且类型为普通文件的所有文件

    [root@Centos7 ~]# find /etc -type f -size +1M -exec ls -lh {} \;
    -r--r--r--. 1 root root 7.8M Jan 28 13:53 /etc/udev/hwdb.bin
    -rw-------. 1 root root 3.8M Nov  3  2018 /etc/selinux/targeted/active/policy.kern
    -rw-r--r--. 1 root root 1.4M Nov  3  2018 /etc/selinux/targeted/contexts/files/file_contexts.bin
    -rw-r--r--. 1 root root 3.8M Nov  3  2018 /etc/selinux/targeted/policy/policy.31
    -rw-r--r--. 1 root root 1.4M Apr 11  2018 /etc/brltty/zh-tw.ctb
    

    Q2、打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录备份。

    [root@Centos7 ~]# find /etc/ -name "*.conf" | xargs tar -zcf /usr/local/src/`date +%F`.tar.gz
    tar: Removing leading `/' from member names
    [root@Centos7 ~]# ls -lh /usr/local/src/2020-03-19.tar.gz 
    -rw-r--r-- 1 root root 190K Mar 19 11:58 /usr/local/src/2020-03-19.tar.gz
    

    Q3、利用sed 取出ifconfig命令中本机的IPv4地址

    [root@Centos7 ~]# ifconfig eth0 | sed -nr '2s/[^0-9]+([0-9.]+).*/\1/p' 
    192.168.139.110
    [root@Centos7 ~]# ifconfig eth0 | sed -nr 's/inet ([0-9.]+).*/\1/p'
            192.168.139.110
    

    Q 4、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符

    [root@Centos7 ~]# sed -e '/^#/d' -e '/^$/d' /etc/fstab
    UUID=b6cd728b-bba0-4293-82f3-c79a5afd648e /                       xfs     defaults        0 0
    UUID=7a05f57c-dbbd-468a-9468-f79aaa0e9ff3 /boot                   xfs     defaults        0 0
    UUID=33b2eb35-fd44-4d83-9f68-01ef1bfe8a67 /data                   xfs     defaults        0 0
    UUID=f101c6fe-d00d-4162-aab6-ab1ef7333047 swap                    swap    defaults        0 0
    

    Q5、处理/etc/fstab路径,使用sed命令取出其目录名和基名

    [root@Centos7 ~]# DIRNAME=echo /etc/fstab | sed -r 's@(^/.*/)[^/]+/?$@\1@'
    [root@Centos7 ~]# echo $DIRNAME
    /etc/
    [root@Centos7 ~]# BASENAME=echo /etc/fstab | sed -r 's@^/.*/([^/]+)/?$@\1@'
    [root@Centos7 ~]# echo $BASENAME
    fstab
    

    相关文章

      网友评论

          本文标题:马哥Linux第五周

          本文链接:https://www.haomeiwen.com/subject/wraqyhtx.html