2
0
forked from Wavyzz/dolibarr

update some tools

This commit is contained in:
Laurent Destailleur
2018-04-27 13:31:11 +02:00
parent e94d5b8318
commit c35a190f1d
2 changed files with 11 additions and 4 deletions

View File

@@ -1,7 +1,13 @@
#!/bin/sh
FROM=2016-01-01
TO=2016-12-31
if [ "x$1" = "x" ]; then
echo "Usage: $0 YEAR"
exit
fi
FROM=$1-01-01
TO=$1-12-31
echo "git log --since $FROM --before $TO | grep ^Author | sort -u -f -i -b | wc -l"
git log --since $FROM --before $TO | grep ^Author | sort -u -f -i -b | wc -l