Just to be clear, I'm not asking if it is possible to run jobs in parallel as I know, that this is what the -j
flag does. I'm asking if you can run/call a job when you are in another job for example:
basic:
echo "This is the basic job"
sub-job:
call basic
echo "And this is the sub-job"
Is there a way to do that?