#!/bin/bash export DEEPDIVE_NUM_PROCESSES=1 #None interactive mode #export DEEPDIVE_INTERACTIVE=false export DEEPDIVE_PLAN_EDIT=false deepdive do sentences export DEEPDIVE_NUM_PROCESSES=11 count=1 flag=-1 while(($flag<0)) do deepdive do probabilities if [ $? -eq 0 ] then flag=1 fi if [ $count -gt 10 ] then flag=1 fi let "count++" done