X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=autodlctl;h=4675ad03239d9e0698ed8897502aae259f0c4a0b;hb=f8416d8d2aeec1e259deffb6767eef7d6cb97b27;hp=8f551de0690e89e1495953979565a2efccaea523;hpb=79d4ee974947a12000d4ba14641b70606d96875b;p=utils.git diff --git a/autodlctl b/autodlctl index 8f551de..4675ad0 100755 --- a/autodlctl +++ b/autodlctl @@ -5,18 +5,19 @@ paths=(/home/pub/video/anime $HOME/dc/autodl/cur) function findcurep { if [ -r badlist ]; then - echo badlist `head -n 1 curep` + echo badlist `head -n 1 badlist` return 0 fi if [ -r curep ]; then if [ -r maxep ]; then if [ "`cat curep`" -le "`cat maxep`" ]; then echo curep `cat curep` + return 0 fi else echo curep `cat curep` + return 0 fi - return 0 fi echo none return 1 @@ -113,14 +114,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