X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=autodlctl;h=e367a7c4bdc9838a7c1fd36374acd68b88e092a9;hb=46b10ab79346e3865966a40fe544ec06ece7e03e;hp=004f5cfeab69f79477687f1915cedb95f638a9dc;hpb=3266af742a2b864b63a7d103c57b4d472ad5d543;p=utils.git diff --git a/autodlctl b/autodlctl index 004f5cf..e367a7c 100755 --- a/autodlctl +++ b/autodlctl @@ -113,20 +113,24 @@ 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 fi ;; esac + if [ "$estat" = bad ]; then + echo "episode reported as bad, adding to badlist" + echo "$curep" >>badlist + fi if ! findcurep; then echo "no more episodes to download from $tag" touch disabled