I have 4 shell scripts dog.sh, bird.sh, cow.sh and fox.sh. Each of these files execute 4 wgets in parallel using xargs to fork a separate process. Now I want these scripts themselves to be executed in parallel. For some portability reason unknown to me I can't use GNU parallel. IS there a way I can do this with xargs or with any other tool.
Also can I also ask what could the portability reason be?
I'm a total newbie to shell scripting. Sorry if my question seems cryptic.
Thanks in advance guys.