-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdiff
executable file
·27 lines (21 loc) · 859 Bytes
/
pdiff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash
# pdiff - Process inputs, then diff
#
# pdiff applies an aribtrary bash command/transformation to two input files, then diffs
# the results. For example, to diff two .py files, but looking at roughly only comments:
# pdiff 'grep "#"' one.py two.py
set -euo pipefail
slugify() {
iconv -t ascii//TRANSLIT | sed -E 's/[~\^]+//g' | sed -E 's/[^a-zA-Z0-9]+/-/g' | sed -E 's/^-+\|-+$//g' | sed -E 's/^-+//g' | sed -E 's/-+$//g' | tr A-Z a-z
}
cmd="$1"
left="$2"
right="$3"
gitOpts="${4:-}"
runCmd() { eval "$cmd" || true; }
processedLeft=$(mktemp /tmp/pdiff.$(echo "$left" | slugify).XXXX)
cat "$left" | runCmd > "$processedLeft"
processedRight=$(mktemp /tmp/pdiff.$(echo "$right" | slugify).XXXX)
cat "$right" | runCmd > "$processedRight"
echo "Diffing $processedLeft and $processedRight"
git diff $gitOpts "$processedLeft" "$processedRight"