find/sed/tar命令练习
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了find/sed/tar命令练习相关的知识,希望对你有一定的参考价值。
1、查找/etc目录下大于1M且类型为普通文件的所有文件
[root@centos7 ~]# find /etc -type f -size +1M
2、打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录备份
[root@centos7 ~]# tar -cvf /usr/local/src/`date "+%T"`.tar /etc/*.conf
3、利用sed 取出ifconfig命令中本机的IPv4地址
[root@centos7 ~]# ifconfig | sed -n ‘2p‘ | sed -r ‘s@^[[:space:]]+[[:alpha:]]+[[:space:]]+([^[:space:]]+).*@1@‘
192.168.2.106
[root@centos7 ~]# ifconfig | sed -nr ‘2s@^[[:space:]]+[[:alpha:]]+[[:space:]]+([^[:space:]]+).*@1@p‘
192.168.2.106
4、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符
[root@centos7 ~]# sed -r ‘s@(^#[[:space:]]+|^#|^$)@@‘ /etc/fstab
5、处理/etc/fstab路径,使用sed命令取出其目录名和基名
[root@centos7 ~]# echo /etc/fstab/ | sed -r ‘s@(^/.*/)([^/]+)/?@1@‘
/etc/
[root@centos7 ~]# echo /etc/fstab/ | sed -r ‘s@(^/.*/)([^/]+)/?@2@‘
fstab
以上是关于find/sed/tar命令练习的主要内容,如果未能解决你的问题,请参考以下文章
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段