I want to delete the specific file, std_info under /tmp,
if it hasn't been modified within a day (or 1440 minutes).
For now, I created the following syntax that prints only the files that were modified within one day:
find /tmp -mmin -1440 -type f -exec ls -l {} +
but how to do the opposite way?
In order to removed the std_info file under /tmp that wasn't modified within 1 day?