I'm new to realm of shell scripting and docker. I'm trying to run a shell script inside of a docker container to host.
Once the script inside my docker container has executed I want to run another script from host in new terminal without exiting my docker container.
I have written:
exit 0 > $?
if [ $? -eq 0 ]; then
echo $?
gnome-terminal --tab -x ./org3Added.sh
fi
but this is not working.