How do I find all the files that were create only today and not in 24 hour period in unix/linux
This worked for me. Lists the files created on May 30 in the current directory.
ls -lt | grep 'May 30'