Skip to content

Instantly share code, notes, and snippets.

@textarcana
Last active March 14, 2020 19:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save textarcana/6805cafd35f1b1c26aa1554a9c0f8691 to your computer and use it in GitHub Desktop.
Save textarcana/6805cafd35f1b1c26aa1554a9c0f8691 to your computer and use it in GitHub Desktop.
filesystem_paths=$(
find . \
-name "*.php" \
-not -name "*Test.php"
)
git log \
--since='3 weeks ago' \
--format='%ad' \
--date=iso-local \
$filesystem_paths \
| cut -d ' ' -f1 \
| sort \
| uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment