mirror of
https://github.com/notwa/rc
synced 2025-03-20 08:15:38 -07:00
document countdiff
This commit is contained in:
parent
7aeda2d105
commit
209bed34cc
1 changed files with 9 additions and 0 deletions
|
@ -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" \
|
||||
|
|
Loading…
Add table
Reference in a new issue