![]() |
|
|
|
|
|||||||
| Filesystems, Disks and Memory Questions involving NAS, SAN, RAID, Robotic Libraries, backups, etc go here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Removing a specific word from a created list | erest8 | UNIX for Dummies Questions & Answers | 5 | 10-14-2007 02:11 AM |
| command to list files that are created before some date | csreenivas | SUN Solaris | 3 | 06-27-2007 03:34 PM |
| List files created between specific date and time | jazjit | Shell Programming and Scripting | 3 | 04-26-2007 10:19 PM |
| List files with a specific date... | B14speedfreak | SUN Solaris | 4 | 06-15-2006 05:59 AM |
| How to list files Created in last 2 hrs | rsonakiya | UNIX for Dummies Questions & Answers | 2 | 05-12-2004 12:22 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
How to list files with specific created date
Hi,
Would like to ask, which command is used to list all the files for specific date (says 1st May) and its size, for all files (including its subdirectory), in a mounted NFS disk to HP-UX. I would like to check for the total files came into my disk on 1st May. Very much appreciating your help, thanks. |
| Forum Sponsor | ||
|
|
|
|||
|
hi,
thanks for the help. i get my desire output with touch -mt 200705010000 /tmp/May-1-2007 touch -mt 200705020000 /tmp/May-2-2007 find . -type f \( -newer /tmp/May-1-2007 -a ! -newer /tmp/May-2-2007 \) | xargs ls -l > output.log |
|||
| Google UNIX.COM |
| Thread Tools | |
| Display Modes | |
|
|