The UNIX and Linux Forums
>
Special Forums
>
Filesystems, Disks and Memory
How to list files with specific created date
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Rules & FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
How to list files with specific created date
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
3
(
permalink
)
05-03-2007
Draculla
Registered User
Join Date: Jul 2006
Posts: 3
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
Draculla
View Public Profile
Find all posts by Draculla