Created
September 12, 2025 21:16
-
-
Save mzaksana/699f22f75c264e2c2f09b9aabbb914f5 to your computer and use it in GitHub Desktop.
Total & Newest Files
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 characters
| 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 | |
| ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment