#!/usr/bin/ksh
echo "Enter a date (YYYYMMDD) "
read date
touch -t 00000000 /tmp/timestamp
echo "Enter a directory.."
read dir
find "$dir" -type f -newer /tmp/timestamp
I earlier used -mtime, but it should not be used, as -mtime searches
for files older by no. of days and not for files modified after a
particular date.
Can anyone please provide with some pointers to my above Code wrt the
mistakes that I did..
Thanks a lot in advance... :-))
Robert