1、显示当前系统上root、fedora或user1用户的默认shell;
[[email protected] ~]# useradd fedora #添加用户fedora [[email protected] ~]# useradd user1 #添加用户user1 [[email protected] ~]# egrep ‘^(root|fedora|user1)‘ /etc/passwd | cut -d: -f1,7 #使用表达式(root|fedora|user1)查找root、fedora或user1 root:/bin/bash fedora:/bin/bash user1:/bin/bash [[email protected] ~]#
2、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello();
[[email protected] ~]# egrep -o "^[_[:alpha:]]+\(\)" /etc/rc.d/init.d/functions #使用[:alpha:]特殊字符集匹配[a-z,A-Z]
3、使用echo命令输出一个绝对路径,使用grep取出其基名;
扩展:取出其路径名
[[email protected] ~]# echo "/home/etc/" | egrep -o "[^/]+/?$" | cut -d"/" -f1
4、找出ifconfig命令结果中的1-255之间数字;
[[email protected] ~]# ifconfig | egrep -o ‘([1-9]|[1-9][0-9]|[0-2][0-5][0-5])‘
5、挑战题:写一个模式,能匹配合理的IP地址;
#以IPV4地址为例: #现在的IP网络使用32位地址,以点分十进制表示,如192.168.0.1。 #地址格式为:IP地址=网络地址+主机地址 #这里不做细化,简单匹配满足主机地址不为全0或全1,即(1-255).(0-255).(0-255).(1-254)即可 #"([1-9]|[1-9][0-9]|[0-2][0-5][0-5]).([0-9]|[1-9][0-9]|[0-2][0-5][0-5]).([0-9]|[1-9][0-9]|[0-2][0-5][0-5]).([1-9]|[1-9][0-9]|[0-2][0-5][0-4])" [[email protected] ~]# cat testIP.txt 2.34.67.99 1.0.0.1 1.22.0.0 1.24.0.255 192.168.999.254 192.167.255.255 [[email protected] ~]# egrep "\<([1-9]|[0-9][1-9]|[0-2][0-5][0-5])\.([0-9]|[1-9][0-9]|[0-2][0-5][0-5])\.([0-9]|[1-9][0-9]|[0-2][0-5][0-5])\.([1-9]|[1-9][0-9]|[0-2][0-5][0-4])\>" testIP.txt 2.34.67.99 1.0.0.1 [[email protected] ~]#
6、挑战题:写一个模式,能匹配出所有的邮件地址;
#邮箱地址一般分为三大部分,用户名@域名 #第一部分为用户名,可包含数字、字母、下划线,且不以特殊字符开头。 #第二部分为@,可用@直接匹配 #第三部分为域名,可包含字母、数字、下划线和“.”组成,且不以特殊字符开头。例如:qq.com、163.com [[email protected] ~]# cat mail.txt #创建mail.txt文件,手写若干邮箱地址。 [email protected] [email protected] [email protected] [email protected]_djfie.dlfl.com [[email protected] ~]# egrep "^[[:alnum:]][_[:alnum:]]*@[[:alnum:]][_[:alnum:]]*\.[[:alnum:]]" mail.txt [email protected] [email protected] [[email protected] ~]#
7、查找/var目录下属主为root,且属组为mail的所有文件或目录;
[[email protected] ~]# find /var -user root -group mail #使用find命令加-user和-group选项指定其属主和属组 /var/spool/mail [[email protected] ~]# find /var -user root -group mail -ls #使用选项-ls查看详细信息 262439 4 drwxrwxr-x 2 root mail 4096 9月 5 18:46 /var/spool/mail
8、查找当前系统上没有属主或属组的文件;
[[email protected] ~]# find / -nouser -o -nogroup #选项-nouser 表示没有属主,-nogroup表示没有属组,-o表示条件‘或’
进一步:查找当前系统上没有属主或属组,且最近3天内曾被访问过的文件或目录;
[[email protected] ~]# find / -nouser -o -nogroup -atime -3 #选项-atime -3 表示查找最近3天内曾被访问过的文件或目录
9、查找/etc目录下所有用户都有写权限的文件;
[[email protected] ~]# find /etc/ -perm -222 -ls #使用选项-perm 根据权限查找 #-222:每一类对象都必须同时拥有为其指定的权限标准; #/MODE:任何一类(u,g,o)对象的权限中只要能一位匹配即可
10、查找/etc目录下大于1M,且类型为普通文件的所有文件;
[[email protected] ~]# find /etc -size +1M -type f -ls #选项-size :指定查找文件大小 #选项-type:指定文件类型 # f: 普通文件 # d: 目录文件 # l: 符号链接文件 # s:套接字文件 # b: 块设备文件 # c: 字符设备文件 # p: 管道文件
11、查找/etc/init.d/目录下,所有用户都有执行权限,且其它用户有写权限的文件;
[[email protected] ~]# find /etc/init.d -perm -113 -ls
12、查找/usr目录下不属于root、bin或hadoop的文件;
[[email protected] ~]# find /usr -not \( -user root -o -user bin -o -user hadoop \) -ls [[email protected] ~]# find /usr/ -not -user root -a -not -user bin -a -not -user hadoop #选项 -not 为条件非 #选项 -a 为条件与
13、查找/etc/目录下至少有一类用户没有写权限的文件;
[[email protected] ~]# find /etc -not -perm -111 -ls
14、查找/etc目录下最近一周内其内容被修改过,且不属于root或hadoop的文件;
[[email protected] ~]# find /etc/ -mtime -7 -a -not \( -user root -o -user hadoop \) #选项 -mtime 查找指定日期内被修改过的文件或目录
时间: 2024-10-13 19:53:30