I know there has to be a simple way to do what I'm trying to accomplish but I haven't found it yet.
I'm trying to take user input variables and use them to create an array of files based on the input.
EX. User enters Month: 04 Day: 01 Year: 2002
then take those and find files with creation dates of 4/1/2002. I've tried using stat with -mtime but that returns all files with the date and newer than the selected. I just need the exact date.
Thanks.