Skip to content
Snippets Groups Projects
Commit d80c7663 authored by Holger Brandl's avatar Holger Brandl
Browse files

added lambda-norm bw tracks

parent 9f54e6aa
No related branches found
No related tags found
No related merge requests found
......@@ -230,6 +230,13 @@ mysub(){
jobName=$(echo $1| tr ' ' '_'); shift
jobCmd=$1; shift
#todo continue here (maybe refac into independent library?)
# if ! [ -x "$(command -v bsub)" ]; then
# bsub -J $jobName $@ "( $jobCmd ) 2>$jobName.err.log 1>$jobName.out.log"
# else
# eval $jobCmd 2>$jobName.err.log 1>$jobName.out.log
# fi
bsub -J $jobName $@ "( $jobCmd ) 2>$jobName.err.log 1>$jobName.out.log"
}
export -f mysub
......
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