![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| finding the file which is modified within last 2 hours | trichyselva | Shell Programming and Scripting | 3 | 03-21-2008 03:11 AM |
| Finding modified File List after the chosen date in Korne Shell... | marconi | Shell Programming and Scripting | 2 | 01-22-2008 01:27 AM |
| Finding files which are modified few mins ago | rajus19 | Shell Programming and Scripting | 3 | 08-16-2007 05:32 AM |
| Finding list of modified files for a particular time duration | sanajyg_mnit | SUN Solaris | 2 | 02-12-2007 11:48 PM |
| Finding out the last modified time for files | kumariak | Shell Programming and Scripting | 3 | 10-18-2005 11:11 AM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Last week I was using the command:
' find /directory -mtime -2 -print' and it showed all the files modified within that period. However, now it only displays the directories and not the files modified. The only thing that changed is that I was granted access to some files. Thanks |
| Forum Sponsor | ||
|
|
|
|||
|
Hi,
You could try the following as a quick fix; $>cd /directory $>find ./ -type f -mtime -2 -print It should also be noted that it is possible to use atime which may give more suitable results depending on the info that you want. Rgds Dave |