mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
95d0eb9b33
git-svn-id: file:///svn/toku/tokudb@48495 c7de825b-a66e-492c-adef-691d508d4ae1
11 lines
128 B
Bash
Executable file
11 lines
128 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ $# -ne 3 ]]; then exit 1; fi
|
|
|
|
test=$1; shift
|
|
outf=$1; shift
|
|
dump=$1; shift
|
|
|
|
set -e
|
|
$test
|
|
$dump $outf
|