mirror of
https://github.com/notwa/rc
synced 2024-11-05 07:29:04 -08:00
6 lines
171 B
Bash
6 lines
171 B
Bash
#!/usr/bin/env sh
|
|
countdiff() {
|
|
git --no-pager diff --stat --no-color --no-index "$1" "$2" \
|
|
| awk '/changed/{print $4+$6;a=1}END{if(!a)print 0}'
|
|
}
|
|
countdiff "$@"
|