Berikut ini contoh menggunakan perintah find di kombinasi dengan ctime dan cmin :
Mencari file yang dibuat di atas 2 hari yang lalu
-----------------------------------------------------
[root@cl01nodsq ~]# find . -name '*.txt' -ctime +2 -exec ls -l {} \;
-rw-r----- 1 root root 1 Feb 22 18:50 ./OIC.txt
-rw-r--r-- 1 root root 756637 Aug 16 2009 ./rep/CL01CHNMSAPP.txt
Mencari file yang dibuat di atas 2 menit yang lalu
-----------------------------------------------------
[root@cl01nodsq ~]# find . -name '*.txt' -cmin +2 -exec ls -l {} \;
-rw-r----- 1 root root 1 Feb 22 18:50 ./OIC.txt
-rw-r--r-- 1 root root 756637 Aug 16 2009 ./rep/CL01CHNMSAPP.txt
-rw-r--r-- 1 root root 5906 Jun 18 2010 ./sanlun_lun_show-vp.old.txt
-rwxr-xr-x 1 root root 13 Apr 28 2009 ./Desktop/rpm/link rpm.txt
Mencari file yang dibuat dimulai dari sekarang sampai 2 hari yang lalu
--------------------------------------------------------------------------
[root@cl01nodsq ~]# find . -name '*.txt' -ctime -2 -exec ls -l {} \;
Mencari file yang dibuat dimulai dari sekarang sampai 2 menit yang lalu
--------------------------------------------------------------------------
[root@cl01nodsq ~]# find . -name '*.txt' -cmin -2 -exec ls -l {} \;
Referensi : Dokumentasi Linux
No comments:
Post a Comment