How do you stop delve headless debugger?
Note: I am runningthis from a docker container on mac, and installed like this:
go get -u github.com/derekparker/delve/cmd/dlv
From this it starts ok, but how do you stop it again.
dlv debug --headless --listen=:2345
ctrl + c
etc. do not work - any special trick?
ps aux | grep dvl
find PID and thekill pid_number
– Tremayne