Closed ghost closed 4 years ago
Hi, I don't really have time for that and I don't really see the need... a batch or shell script can do it for you. tools are not made to do everything by themself but to get combined to make everything possible ;) The important thing is to provide a "good API". nzbCheck is returning (exit code) the number of missing Articles. This is more than enough for other tools to exploit its result.
Ah ok thanks I understand.
@noobcoder1983
#!/bin/bash
for i in *.nzb
do
nzbcheck --progress -S "user:pass@@@servidor1.com:563:40:ssl" -S "user:pass@@@servidor2.com:563:40:ssl" -i "$i"
done
==================
or for windows:
@echo off
for %%I in (*.nzb) do nzbcheck --progress -S "user:pass@@@servidor1.com:563:40:ssl" -S "user:pass@@@servidor2.com:563:40:ssl" -i "%%I"
pause
Thanks for help, it works! :-)
Hi,
could you please implement a function/parameter that automatically checks nzb folders by iteration?
Thanks!