Linux基础知识(五)-文件查找命令find

1、显示当前系统上root、fedora或user1用户的默认shell;

[root@localhost ~]# cat /etc/passwd | grep -E "^(root|fedora|user1)"
root:x:0:0:root:/root:/bin/bash
user1:x:1007:1007::/home/user1:/bin/bash
fedora:x:1013:1013::/home/fedora:/bin/bash
[root@localhost ~]# cat /etc/passwd | grep -E "^(root|fedora|user1)\>" | cut -d: -f1,7 
root:/bin/bash
user1:/bin/bash
fedora:/bin/bash

2、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello();

[root@localhost ~]# cat /etc/rc.d/init.d/functions | grep -E -o "\<.*\>\(\)"

## 或者 ##

[root@localhost ~]# grep  -E  -o  "[_[:alnum:]]+\(\)"  /etc/rc.d/init.d/functions

3、使用echo命令输出一个路径,使用grep取出其基名;

扩展:取出其路径名;

[root@localhost ~]# echo /etc/sysconfig | grep -E -o "[^/]+$"
sysconfig   #从尾部取到非/的部分

## 或者 ##

[root@localhost ~]# echo /etc/sysconfig/ | grep -E -o "[^/]+/?$"
sysconfig/
## 扩展:取路径名 ##
[root@localhost ~]# echo /etc/sysconfig/ | grep -E -o "^/[[:alnum:]]+[^/]"
/etc
[root@localhost ~]# echo /etc/rc.d/init.d/functions | grep -E -o  "^/[[:alnum:]]*[^/]"   #多层路径用这样的匹配是没办法取到的,应该用下面的

/etc
[root@localhost ~]# echo /etc/rc.d/init.d/functions | grep -E -o "/.*/"

/etc/rc.d/init.d/

4、找出ifconfig命令结果中的1-255之间数字;

[root@localhost ~]# ifconfig | grep -E -o "\<([1-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\>"

5、写一个模式,能匹配出合理的IP地址;

[root@localhost ~]# ifconfig | grep -E -o "(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)"
192.168.1.106
255.255.255.0
192.168.1.255
127.0.0.1
255.0.0.0

6、写一个模式,能匹配出所有的邮件地址;

[root@localhost ~]# cat /scripts/emailpreg.txt | grep -E -o "[a-zA-Z0-9_-]*@[a-zA-Z0-9_-]*\.[a-zA-Z]*$"
123@qq.com
a34@163.com
a43ll@gmail.com
hello_world@abc.cn

7、查找/var目录下属主为root,且属组为mail的所有文件和目录;

[root@localhost ~]# find /var -user root -a -group mail -ls
134321240    4 drwxrwxr-x   2 root     mail         4096 Oct 19 16:28 /var/spool/mail
135041050  408 -rw-------   1 root     mail       414950 Oct 19 16:28 /var/spool/mail/root
##或者##
[root@localhost ~]# find /var -user root -a -group mail -exec ls -ldh {} \;
drwxrwxr-x. 2 root mail 4.0K Oct 19 16:31 /var/spool/mail
-rw-------. 1 root mail 410K Oct 19 16:31 /var/spool/mail/root

8、查找当前系统上没有属主或属组的文件;

[root@localhost ~]# find  /  \( -nouser -o -nogroup \) -exec ls -ldh {} \;
drwx------. 2 1005 distro 59 Oct  3 07:58 /home/mandriva
-rw-r--r--. 1 1005 distro 18 Nov 20  2015 /home/mandriva/.bash_logout
-rw-r--r--. 1 1005 distro 193 Nov 20  2015 /home/mandriva/.bash_profile
-rw-r--r--. 1 1005 distro 231 Nov 20  2015 /home/mandriva/.bashrc

查找当前系统上没有属主或属组,且最近3天内曾被访问过的文件或目录;

[root@localhost ~]# find  /  \( -nouser -o -nogroup \) -atime -3 -exec ls -ldh {} \;
drwx------. 2 1005 distro 59 Oct  3 07:58 /home/mandriva
[root@localhost ~]# stat /home/mandriva | grep -i access
Access: (0700/drwx------)  Uid: ( 1005/ UNKNOWN)   Gid: ( 2016/  distro)
Access: 2016-10-19 16:36:46.077491511 -0400 #访问时间
[root@localhost ~]# date +'%F %H:%M:%S'
2016-10-19 16:55:03 #当前时间,证明文件缺失在3天内被访问过

9、查找/etc目录下所有用户都有写权限的文件;

[root@localhost ~]# find /etc -perm -222 -ls

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

[root@localhost ~]# find /etc -size +1M -type f -exec ls -lh {} \;
-r--r--r--. 1 root root 6.7M Aug 23 12:14 /etc/udev/hwdb.bin
-rw-r--r--. 1 root root 3.7M Nov 20  2015 /etc/selinux/targeted/policy/policy.29

11、查找/etc/init.d/目录下,所有用户都有执行权限,且其它用户有写权限的文件;

[root@localhost ~]# find /etc/init.d/ -perm -113 -type f -ls

12、查找/usr目录下不属于root、bin或hadoop的文件;

[root@localhost ~]# find /usr -not -user root -a -not -user bin -a -not -user hadoop -ls
134652726    0 drwx------   2 polkitd  root            6 Jun  9  2014 /usr/share/polkit-1/r
## 或者 ##
[root@localhost ~]# find /usr -not \( -user root -o -user bin -o -user hadoop \) -ls
134652726    0 drwx------   2 polkitd  root            6 Jun  9  2014 /usr/share/polkit-1/rules.d

13、查找/etc/目录下至少有一类用户没有写权限的文件;

[root@localhost ~]# find /etc -not -perm -222 -type f -ls

14、查找/etc目录下最近一周内其内容被修改过,且不属于root或hadoop的文件;

[root@localhost ~]# find /etc -not \( -user root -a -user hadoop  \) -mtime -7 -ls

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

(0)
luoluoluoluo
上一篇 2016-10-24
下一篇 2016-10-24

相关推荐

  • 01

    0101

    Linux干货 2016-08-08
  • 浅谈用户名和权限

        小编已经写了两篇博客了,却忘了自我介绍,咳咳咳(隆zhuang重qiang介zuo绍shi)一下:翠衣薄纱如花艳,柳眉凤眼俏佳人说的就是我!不扯了其实,小编拥有一个四口之家,那么小编今天就借家献佛给你们讲讲用户组和权限。     所属主(me):一般为文件的创建者,谁创建了该文件,就天然的成…

    Linux干货 2017-07-30
  • 用一条命令’pwd’判断并证明系统命令的执行顺序。

    一、命令分类        在Linux系统中命令分为两类:            1.内部命令:shell buildin 每次启动系统都会重新加载入内存。        2.外部命令:即某目录下的…

    Linux干货 2017-09-03
  • 硬链接与软链接的区别

    硬链接与软连接                本文仅用于个人学习参考:         简单介绍了硬链接与软连接的区别。  &nb…

    Linux干货 2016-10-20
  • 第四周作业

    1、复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。 [root@unclez ~]# cp -r /etc/skel /home/tuser1 [root@unclez ~]# chmod -R&…

    Linux干货 2016-12-24
  • 正则表达式基础

    正则表达式正则表达式    元字符:        .       点表示任意单个字符 最少一次        \w      匹配字母、数字、下划线、或汉字。        \s      匹配任意空白字符        \d      匹配数字        \b      匹配字符的开始或结束        ^       匹配首字符        $…

    Linux干货 2017-11-14