![]() |
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 |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| get latest file | inquirer | Shell Programming and Scripting | 4 | 04-02-2009 11:15 AM |
| Getting latest file from ftp | arunavlp | UNIX for Dummies Questions & Answers | 3 | 02-08-2008 10:19 AM |
| Creating an updated file | dbfree | Shell Programming and Scripting | 4 | 09-30-2005 03:23 AM |
| want to cat the latest log file created | vkandati | UNIX for Dummies Questions & Answers | 1 | 03-08-2005 06:13 PM |
| How to Grab the latest file | n9ninchd | UNIX for Dummies Questions & Answers | 1 | 05-10-2001 04:31 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
checking out latest updated file
hi,
i was wondering if there is a way to find out which file is updated the most recent time in the entire file system.... most probably this would be refering to some LOG file, but i wanna find a way which file was that... some script should work or what? can anybody help me out on that. for example to list the last 20 most updated files. starting from root onwards thanks indeed |
|
||||
|
Quote:
Code:
ls -ltr | tail -20 |
|
||||
|
but that will give updated files in the current working directory...
i need to see in whole filesystem starting from root and onwards i wanna check which files are the most updated ones ....not in a particular directory but overall in the entire filesystem which also shows its path thanks |
|
||||
|
find with mtime option may help.
A Sample: Code:
find / -mtime -5 -exec ls -ltr {} \;
|
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|