Last active
March 14, 2020 19:13
-
-
Save textarcana/6805cafd35f1b1c26aa1554a9c0f8691 to your computer and use it in GitHub Desktop.
This file contains 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
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