X-Git-Url: http://dolda2000.com/gitweb/?p=utils.git;a=blobdiff_plain;f=autodlctl;fp=autodlctl;h=e367a7c4bdc9838a7c1fd36374acd68b88e092a9;hp=8f551de0690e89e1495953979565a2efccaea523;hb=46b10ab79346e3865966a40fe544ec06ece7e03e;hpb=79d4ee974947a12000d4ba14641b70606d96875b diff --git a/autodlctl b/autodlctl index 8f551de..e367a7c 100755 --- a/autodlctl +++ b/autodlctl @@ -113,14 +113,14 @@ function getnext if [ "$estat" = dbl ]; then echo -en "${tag}\n${curep}\n" >>"$HOME/dc/autodl/done" echo -en "${tag}\n$((${curep} + 1))\n" >>"$HOME/dc/autodl/done" - let curep+=2 + let "nextep=curep+2" else echo -en "${tag}\n${curep}\n" >>"$HOME/dc/autodl/done" - let curep++ + let "nextep=curep+1" fi - echo "$curep" >curep + echo "$nextep" >curep if [ -r maxep ]; then - if [ "$curep" -gt "`cat maxep`" ]; then + if [ "$nextep" -gt "`cat maxep`" ]; then echo "$tag has reached max" echo "$tag" >>"$HOME/dc/autodl/maxed" fi