1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2025-03-20 08:15:38 -07:00

document countdiff

This commit is contained in:
Connor Olding 2021-08-01 08:27:08 -07:00
parent 7aeda2d105
commit 209bed34cc

View file

@ -4,6 +4,15 @@
# YES_DASH
countdiff() { ### @-
### 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; }
[ $# -le 2 ] || { printf "%s\n" "$0: too many arguments" >&2; return 1; }
git --no-pager diff --stat --no-color --no-index "$1" "$2" \