Is there a find command flag where I can set a max date age for files. Example would be only files within the last 2 days
Also, a command I was given was -type f
what does -type f
mean?
Is there a find command flag where I can set a max date age for files. Example would be only files within the last 2 days
Also, a command I was given was -type f
what does -type f
mean?
Read the manual ! See -mtime -2 to get the modifications in the last two days and only concerning the files with -type f
http://man7.org/linux/man-pages/man1/find.1.html