Skip to content
Snippets Groups Projects
Commit 81f7e450 authored by Moe Jette's avatar Moe Jette
Browse files

Run two job steps from batch job

parent 77cc46b2
No related branches found
No related tags found
No related merge requests found
......@@ -55,11 +55,13 @@ print_header $test_id
#
# Delete left-over input script plus stdout/err files
# Build input script file
# Build input script file that runs two job steps
#
exec $bin_rm -f $file_in $file_out $file_err
exec echo "#!$bin_bash" >$file_in
exec echo "$bin_id" >>$file_in
exec echo "#!$bin_bash" >$file_in
exec echo "$bin_id" >>$file_in
exec echo "$srun $bin_sleep 1" >>$file_in
exec echo "$srun $bin_sleep 1" >>$file_in
exec $bin_chmod 700 $file_in
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment