How to find files older than certain year or minute in Linux
In some cases, we want to find files that older than certain year , let say 1 year, we can use the -mtime +1 argument. In other hand, if we want to find files that older than certain minute, let say 1 minute, we can use -mmin +1 argument. man find find the following statement …