Consider the following scripts
#!/bin/bash
# fee.sh
echo "fee"
#!/bin/bash
# foo.sh
echo "foo"
./fee.sh &
Now execute the foo script.
$ ./foo.sh
foo
Only the output from foo.sh is visible. The output from fee.sh, which is spawned within foo.sh, is not visible.