blob: 352e29767a5d9a9d9a1ff4da515cada9563514b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
rm -f testbdb.dat
./testbdb testbdb.dat foo bar
./testbdb testbdb.dat foo baz
./testbdb testbdb.dat bar foo
./testbdb testbdb.dat foo
./testbdb testbdb.dat bar
./testbdb testbdb.dat
./testbdb testbdb.dat -foo
./testbdb testbdb.dat
rm -f testbdb.dat
|