1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 09:07:12 -07:00
rc/sh/countdiff

25 lines
645 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
2021-07-29 00:37:35 -07:00
# YES_ZSH
# YES_BASH
# YES_DASH
# YES_ASH
2021-10-04 17:06:45 -07:00
# YES_BB_AWK
2021-07-29 00:37:35 -07:00
countdiff() { ### @-
2021-08-01 08:27:08 -07:00
### count the number of lines changed between two files.
###
### **TODO:** don't use git for this. also, use patience algorithm.
###
### ```
### $ countdiff README-old.md README.md
### 739
### ```
[ $# -gt 1 ] || { printf "%s\n" "$0: too few arguments" >&2; return 1; }
2021-07-29 00:37:35 -07:00
[ $# -le 2 ] || { printf "%s\n" "$0: too many arguments" >&2; return 1; }
git --no-pager diff --stat --no-color --no-index "$1" "$2" \
| awk '/changed/{print $4+$6;a=1}END{if(!a)print 0}'
}
2021-07-29 00:37:35 -07:00
[ -n "${preload+-}" ] || countdiff "$@"