9 lines
159 B
Bash
Executable File
9 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$#" -lt 4 ];
|
|
then
|
|
echo "Usage <nslave> <ndata> <config> <round_files_dir>"
|
|
exit -1
|
|
fi
|
|
|
|
../submit_job_tcp.py $1 test_recover "${@:2}"
|