How can I come out of shell script execution?
I am running a shell script, using AWS Code Deploy on Linux EC2 machine. The script executes a binary which starts a web app on port 3000. Given it executes a binary which creates a process, the shell script never terminates which fails my AWS Code Deployment.
How can I come out of the shell script without terminating the binary process?
#!/bin/bash
cd /home/ec2-user/go/bin/
./go_binary
---

