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.

1 Like

Draculla,
See if this post will help you:

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