How to find the last modified files in Linux. Any kind of comment or suggestion would be appreciated.
Announcement
Collapse
No announcement yet.
Last modified files in Linux
Collapse
X
-
Following is a run time example :
List the files by last time :
ls -lrt
total 0
-rw-r----- 1 root root 0 2011-02-20 12:27 1.txt
----r----- 1 root root 0 2011-02-20 15:27 abc.htm
-rw------- 1 root root 0 2011-02-20 15:29 123.txt
-rw-r--r-- 1 root root 0 2011-02-20 20:30 swt.txt
-rwxrwxrwx 1 root root 0 2011-02-20 20:31 iudt.txt
---------- 1 root root 0 2011-02-20 20:31 uidkj.txt# find -newer 123.txt
.
./swt.txt
./iudt.txt
./uidkj.txt
Comment
Comment