I want to write a cron job to delete all files in the /tmp folder that have not been accessed in 3 days. What Linux command should I use to find such files?
You can use the find command with atime.
Here is an example:
# find /tmp -atime +3