29 lines
388 B
Bash
Executable File
29 lines
388 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
cd negdata
|
|
python _ReName.py
|
|
python ./_GenTXT.py
|
|
python ./_copy.py
|
|
cd ..
|
|
|
|
cd posdata
|
|
python _ReName.py
|
|
python ./_GenTXT.py
|
|
python ./_copy.py
|
|
cd ..
|
|
|
|
python ./process_txt_files.py
|
|
|
|
./step1.sh
|
|
./step2_t1.sh
|
|
|
|
|
|
cp xml_step2_t1/cascade.xml test_case/beach_test/cascade.xml
|
|
cd test_case/beach_test
|
|
./test.sh
|
|
cd ..
|
|
|
|
|
|
# echo "done"
|
|
# exit 0 |