1
0
mirror of https://github.com/moparisthebest/xeps synced 2024-08-13 16:53:48 -04:00
xeps/tools/md-diff.sh
2021-02-18 16:48:50 +01:00

13 lines
278 B
Bash
Executable File

#!/bin/bash
# md-diff
# arguments: file commit commit [diff tool with args]
if [ $# -lt 3 ]; then
echo 'arguments: file commit commit [diff tool with args]' >&2
exit 1;
fi
${4:-diff} \
<(git show "$2:$1" | ${0%/*}/xep2md.sh -) \
<(git show "$3:$1" | ${0%/*}/xep2md.sh -)