I have a folder with several sub-folders and files. I work on a server where any files that are older than 60 days are automatically deleted. What are some simple commands to update the access time (atime) of the files so that this kind of deletion does not occur (Sometimes I don't work with the files for more than 60 days, and it's a pain to set up all the folders again) ?
I thought of a very crude way - use
vim *
vim */* ... and so on
to open all the subfolders and then just close them with :q. However this is again a tedious process. Any ideas on how to set up a script or to use a tool other than vim?

