Page MenuHomec4science

launch_LSF_jobs.sh
No OneTemporary

File Metadata

Created
Wed, Nov 6, 07:30

launch_LSF_jobs.sh

#!/bin/bash
# remove previous output files
rm *.out
# launch all the scripts
for SUBM_SCRIPT in "LSF_submission_scripts/*.sh"
do
bsub < ${SUBM_SCRIPT};
done
# wait a bit
sleep 2
# show all the jobs
bjobs -w

Event Timeline