I have a bash script that runs over crontab as root.
On the bottom of that script I want to run another bash script as another user in a subshell (detached).
How can I do that
The normal command would be
/bin/bash /path/myscript.sh
Thanks in advance.