![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 !! |
More UNIX and Linux Forum Topics 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 | 5 | 06-04-2009 02:53 PM |
| Finding modified File List after the chosen date in Korne Shell... | marconi | Shell Programming and Scripting | 2 | 01-22-2008 05:27 AM |
| Finding files which are modified few mins ago | rajus19 | Shell Programming and Scripting | 3 | 08-16-2007 09:32 AM |
| Finding list of modified files for a particular time duration | sanajyg_mnit | SUN Solaris | 2 | 02-13-2007 03:48 AM |
| Finding out the last modified time for files | kumariak | Shell Programming and Scripting | 3 | 10-18-2005 03:11 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate 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 |
|
||||
|
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 |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|