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