I'm trying to call a custom shell script through sh
:
/bin/sh -c 'myscript.sh` >log.txt 2>&1 & echo $!
Output of this command is a PID of a created background process. I want to instruct /bin/sh
to save return code of myscript.sh
to some file. Is it possible?