Created
September 12, 2025 21:16
-
-
Save mzaksana/699f22f75c264e2c2f09b9aabbb914f5 to your computer and use it in GitHub Desktop.
Revisions
-
mzaksana created this gist
Sep 12, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ watch -n 2 ' echo "Total files: $(find src -type f | wc -l)" echo echo "Newest 10 files:" find src -type f -exec stat -f "%Sm %z %N" {} + | sort -r | head -n 10 '