Bash scripting: find recently modified files on a linux/*nix server
This has turned out to be a somewhat tricky task – to find all updated files since nn-number of days within the current path / directory tree. The first bit was, use the find command like so: find . -mtime -3 -printf “%Tx\t%p\n” This gives you the modified date and name / relative path of all changed files within the… Read more →
Recent Comments