15 lines
229 B
Bash
Executable File
15 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
|
|
python -u higgs-numpy.py
|
|
ret=$?
|
|
if [[ $ret != 0 ]]; then
|
|
echo "ERROR in higgs-numpy.py"
|
|
exit $ret
|
|
fi
|
|
python -u higgs-pred.py
|
|
ret=$?
|
|
if [[ $ret != 0 ]]; then
|
|
echo "ERROR in higgs-pred.py"
|
|
exit $ret
|
|
fi
|