5 lines
101 B
Bash
Executable file
5 lines
101 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for T in "@TABLES_DIR@"/*; do
|
|
"@NBFT_DUMP_PATH@" "$T" > "@DIFF_DIR@/`basename $T`"
|
|
done
|