Skip to content

Instantly share code, notes, and snippets.

@mzaksana
Created September 12, 2025 21:16
Show Gist options
  • Select an option

  • Save mzaksana/699f22f75c264e2c2f09b9aabbb914f5 to your computer and use it in GitHub Desktop.

Select an option

Save mzaksana/699f22f75c264e2c2f09b9aabbb914f5 to your computer and use it in GitHub Desktop.
Total & Newest Files
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