How To Avoid SIGCHLD error In Bash Script That Uses GNU Parallel
问题 I'm running a script.sh in a loop. The script contains a parallel wget command. I'm getting the following error: Signal SIGCHLD received, but no signal handler set. The loop looks like this: for i in {1..5}; do /script.sh; done And the line that is causing the error looks like this (omitting options and settings): cat file.txt | parallel -j15 wget Research: I'm not an expert with GNU Parallel, but the script seems to work fine most of the time except when I get the error above. While looking