You can use the -newer option of the command find.
Try and adapt the following script :
Code:
#!/usr/bin/sh
# lss - List files from a certain date
# Arg: From date, yyyymmdd (default today)
from_date=${1:-`date +'%Y%m%d'`}0000.00
from_file=/tmp/from.$$
touch -t $from_date $from_file
find . -name "[0-9]*.TXT" -newer $from_file -exec ls -l {} \;
rm -f $from_file
Attention, files created At 00:00.00 on From date will not be displayed.
If this a problem for you, modify the script to use the previous day 23;59;59 as from date.