From: Erez Zadok Date: Sat, 7 May 2022 00:19:18 +0000 (-0400) Subject: add ezk script to check git diff of repo X-Git-Url: https://git.fsl.cs.stonybrook.edu/?a=commitdiff_plain;h=0e7a31ec50ae9b029feb70da426538105bdc1e7f;p=wrapfs-mgmt.git add ezk script to check git diff of repo --- diff --git a/wezdiff b/wezdiff new file mode 100755 index 0000000..187b310 --- /dev/null +++ b/wezdiff @@ -0,0 +1,11 @@ +#!/bin/sh +mv -f diffs.txt diffs.txt.old +for i in * */* ; do + test -f "$i" || continue + case "$i" in + *.config ) ;; + * ) + ezgit diff "$i" >> diffs.txt + ;; + esac +done