I am trying to scan (our) website with a script, that's basically a more
detail wget command, that takes $1 as the url.

nohup parallel -eta -j20 --line-buffer '.  extendedwget.sh  {}  >
$RANDOMoutfile ' :::: www.test.com  > /dev/null 2>&1 &


Somehow the redirection to the outfile (with $RANDOMoutfile) does not work.
I had it in the script previously, but then I get a lot of different
outnames.  I also tried 4x : and 3x :, that seemed not to make a difference.

I used this with another script, and it seemed to work fine (except that it
ran only on one core )

nohup parallel [ left out details ] > /dev/null 2>&1 &

Do you have a tip how to fix this?

Reply via email to