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