Finding Files Edited Today on Linux
Find all files in this directory (.) modified in the last day (-mtime -1) that aren’t directories (\! -type d) and execute the list function on them ls -l: find . -mtime -1 \! -type d -exec ls -l {} … Read More
Find all files in this directory (.) modified in the last day (-mtime -1) that aren’t directories (\! -type d) and execute the list function on them ls -l: find . -mtime -1 \! -type d -exec ls -l {} … Read More
To chmod recursively, meaning directories and all directories within, you’d use the -R option: chmod -R 755 From the chmod man page: -R, –recursive change files and directories recursively This is all simple enough, but for some reason I always … Read More