Find files on Linux with find
Finding files on Linux is pretty simple, I was in the middle of creating a bash script when I was in need to find files inside a certain folder that was older than X amount of days. Syntax: find $PWD -type f -mtime +10 This tells find to search the… Continue reading