9 lines
130 B
Bash
9 lines
130 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ $# -ne 2 ]; then
|
||
|
echo "Usage: $0 TABLE DIFF" >&2
|
||
|
exit 255
|
||
|
fi
|
||
|
|
||
|
"@NBFT_DUMP_PATH@" "$1" | diff --unified "$2" -
|