标签:log 过程 less nbsp 文件中 搜索 tor cep lan
find命令用来在指定目录下查找文件。任何位于参数之前的字符串都将被视为欲查找的目录名。如果使用该命令时,不设置任何参数,则find命令将在当前目录下查找子目录与文件。并且将查找到的子目录和文件全部进行显示。
1 -maxdepth levels 设置最大目录层级; 2 Descend at most levels (a non-negative integer) levels of directories below the com- 3 mand line arguments. -maxdepth 0 4 means only apply the tests and actions to the command line arguments. 5 6 -mindepth levels 设置最小目录层级; 7 Do not apply any tests or actions at levels less than levels (a non-negative integer). 8 -mindepth 1 means process all files except the command line arguments. 9 10 -name pattern 指定字符串作为寻找文件或目录的范本样式; 11 12 -size 指定文件大小 13 14 -type c 指定文件类型 15 16 b block (buffered) special 字符设备 17 c character (unbuffered) special 字符串 18 d directory 目录 19 p named pipe (FIFO) 20 f regular file 普通文件 21 l symbolic link; this is never true if the -L option or the -follow option is in 符号连接 22 effect, unless the symbolic link is broken. If you want to search for symbolic 23 links when -L is in effect, use -xtype. 24 25 -exec <执行指令>:假设find指令的回传值为True,就执行该指令; 26 --mtime 查找指定天数 27 !取反
查找文件的起始目录
1 [root@cobbler6 ~]# find . -type f -name "*.txt" 2 ./oldboy.txt 3 ./luoahong/1129.txt 4 ./test/e.txt 5 ./test/b.txt 6 ./test/a.txt 7 ./test/c.txt 8 ./test/d.txt 9 [root@cobbler6 ~]# find . -type f -name "*.txt"|xargs rm -f 10 [root@cobbler6 ~]# ll 11 total 145900 12 drwxr-xr-x 2 root root 4096 Nov 22 23:37 - 13 -rw-------. 1 root root 1190 Oct 7 01:14 anaconda-ks.cfg 14 -rw-r--r--. 1 root root 24908 Oct 7 01:13 install.log 15 -rw-r--r--. 1 root root 6961 Oct 7 01:11 install.log.syslog 16 -rw-r--r-- 1 root root 149323776 Dec 4 19:23 luo1.tar.gz 17 drwxr-xr-x 2 root root 4096 Dec 13 01:28 luoahong 18 -rw-r--r-- 1 root root 0 Nov 23 03:43 luo.conf 19 -rw-r--r-- 1 root root 120 Nov 23 03:48 nginx.conf 20 -rw-r--r-- 1 root root 556 Nov 29 16:23 oldboy-2016-11-26.tar.gz 21 drwxr-xr-x 2 root root 4096 Nov 25 02:24 oldboydir 22 lrwxrwxrwx 1 root root 9 Nov 25 02:23 oldboydir_hard_link -> oldboydir 23 lrwxrwxrwx 1 root root 9 Nov 25 02:25 oldboydir_soft_link -> oldboydir 24 -rw-r--r-- 1 root root 5 Nov 27 16:53 oldboy.log 25 drwxr-xr-x 2 root root 4096 Nov 22 23:37 p 26 drwxr-xr-x 2 root root 4096 Dec 13 01:28 test
1 找出当前目录下所有root的文件,并把所有权更改为用户tom 2 find .-type f -user root -exec chown tom {} \; 3 上例中,{} 用于与-exec选项结合使用来匹配所有文件,然后会被替换为相应的文件名。 找出自己家目录下所有的.txt文件并删除 4 find $HOME/. -name "*.txt" -ok rm {} \; 5 上例中,-ok和-exec行为一样,不过它会给出提示,是否执行相应的操作。 查找当前目录下所有.txt文件并把他们拼接起来写入到all.txt文件中 6 find . -type f -name "*.txt" -exec cat {} \;> all.txt 7 将30天前的.log文件移动到old目录中 8 find . -type f -mtime +30 -name "*.log" -exec cp {} old \;
[root@zabbix-agent log]# find ./ -type f -name "*.log" -mtime +7|xargs rm -f
[root@zabbix-agent ~]# find . -type f -size +10k
[root@zabbix-agent ~]# find . -mindepth 2 -type f
[root@zabbix-agent ~]# find . -maxdepth 3 -type f
标签:log 过程 less nbsp 文件中 搜索 tor cep lan
原文地址:http://www.cnblogs.com/luoahong/p/6165352.html