It can be easily done using
find command (Read:
man find). To search files modified 1 day ago, use:
Code:
find /path/to/dir -mtime -1 -print > /path/to/outputfile
/path/to/dir is directory under which you want to seach such files and
/path/to/outputfile is output file where you want to save the list of such files.