![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | 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 !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to list files that were added or modified on a certain date? | thoughts | UNIX for Dummies Questions & Answers | 8 | 02-19-2008 10:44 PM |
| Create a list of files that were modified after a given date. | rkka | UNIX for Dummies Questions & Answers | 4 | 01-22-2008 02:12 AM |
| Finding list of modified files for a particular time duration | sanajyg_mnit | SUN Solaris | 2 | 02-13-2007 12:48 AM |
| List Files & Folders created/modified | tipsy | Shell Programming and Scripting | 2 | 10-24-2006 10:22 AM |
| list last 10 days modified files | arunkumar_mca | UNIX for Dummies Questions & Answers | 1 | 10-12-2006 01:09 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
list exe files modified before certain dates
Can you please tell me how I can list all EXE files in a dir and Subdir which where modified say before 01/01/2006
|
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
man find
with atime |
|
#3
|
||||
|
||||
|
touch -t 200601010000 search
find . -type f ! -newer search -exec file {} \; | grep "executable" |
||||
| Google The UNIX and Linux Forums |