#!/usr/bin/ksh echo "Enter a date (YYYYMMDD) " read dte touch -t "$dte"0000 /tmp/timestamp echo "Enter a directory.." read dir find "$dir" -type f -newer /tmp/timestamp rm /tmp/timestamp