mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
12 lines
265 B
Bash
12 lines
265 B
Bash
#!/usr/local/bin/bash
|
|
|
|
date
|
|
sqlplus $1 < cleanup.sql
|
|
sqlplus $1 < setup.sql
|
|
perl make_test_data.pl ../*.txt >/tmp/temp.sql
|
|
sqlplus $1 < /tmp/temp.sql
|
|
echo "exec conversion_test.testAll;" > /tmp/temp.sql
|
|
echo "exit;" >> /tmp/temp.sql
|
|
sqlplus $1 < /tmp/temp.sql
|
|
date
|