10分以内に更新されたファイルを探したい。とかの時に使う。
1 2 3 4 5 6 7 8 |
[root@localhost tmp]# find ./ -mmin -10 -ls 8388679 8 drwxrwxrwt 23 root root 4096 7月 4 10:53 ./ 25718056 0 drwxr-xr-x 2 root root 58 7月 4 10:50 ./hsperfdata_root 29971511 32 -rw------- 1 root root 32768 7月 4 10:57 ./hsperfdata_root/11195 29971517 32 -rw------- 1 root root 32768 7月 4 10:57 ./hsperfdata_root/11201 29971521 32 -rw------- 1 root root 32768 7月 4 10:57 ./hsperfdata_root/11268 29971522 32 -rw------- 1 root root 32768 7月 4 10:57 ./hsperfdata_root/11300 [root@localhost tmp]# |
10分以上経過したファイルを探す場合
1 2 3 4 5 6 7 8 9 10 11 |
[root@localhost tmp]# find ./ -mmin +10 -ls 8388680 0 -rw------- 1 root root 0 6月 29 11:46 ./yum.log 1091290 0 drwxrwxrwt 2 root root 67 6月 29 15:50 ./.ICE-unix 1985896 0 srwxrwxrwx 1 a a 0 6月 29 12:18 ./.ICE-unix/11825 3570121 0 srwxrwxrwx 1 gdm gdm 0 6月 29 15:04 ./.ICE-unix/2319 1867989 0 srwxrwxrwx 1 gdm gdm 0 6月 29 15:22 ./.ICE-unix/3095 3570134 0 srwxrwxrwx 1 a a 0 6月 29 15:50 ./.ICE-unix/5620 8970304 0 drwxrwxrwt 2 root root 16 6月 29 15:22 ./.X11-unix 8970309 0 srwxrwxrwx 1 root root 0 6月 29 15:22 ./.X11-unix/X0 1091291 0 drwxrwxrwt 2 root root 6 6月 29 11:53 ./.Test-unix 8970305 0 drwxrwxrwt 2 root root 6 6月 29 11:53 ./.XIM-unix |
10分ジャスト
1 2 |
[root@localhost tmp]# find ./ -mmin 10 -ls 25718056 0 drwxr-xr-x 2 root root 58 7月 4 10:50 ./hsperfdata_root |
日付で指定する場合-mtimeを使う
1 2 3 4 5 6 7 8 9 10 11 |
[root@localhost tmp]# find ./ -mtime +10 -ls | head -10 10465390 4 -rw-r--r-- 1 root root 1025 6月 13 19:34 ./yum.conf 8404998 0 drwxr-xr-x 6 root root 222 11月 16 2016 ./fj_lsp_tmp.31626 16966862 4 dr-xr-xr-x 4 root root 4096 11月 14 2016 ./fj_lsp_tmp.31626/DEF 16966863 4 -r--r--r-- 1 root root 4006 12月 25 2012 ./fj_lsp_tmp.31626/DEF/backup_directory.class 16966864 4 -r--r--r-- 1 root root 3977 12月 25 2012 ./fj_lsp_tmp.31626/DEF/backup_file.class 16966866 4 -r--r--r-- 1 root root 2748 10月 23 2014 ./fj_lsp_tmp.31626/DEF/backup_setup_yum_conf.class 16966867 4 -r--r--r-- 1 root root 2974 11月 14 2016 ./fj_lsp_tmp.31626/DEF/change_media.class 16966868 4 -r--r--r-- 1 root root 1582 3月 14 2016 ./fj_lsp_tmp.31626/DEF/check_debuginfo_install_status.class 16966869 4 -r--r--r-- 1 root root 2677 3月 14 2016 ./fj_lsp_tmp.31626/DEF/check_debuginfo.class 16966871 4 -r--r--r-- 1 root root 1772 3月 14 2016 ./fj_lsp_tmp.31626/DEF/check_machine_type.class |