Skip to content

Instantly share code, notes, and snippets.

@rueian
Last active August 24, 2021 17:44
Show Gist options
  • Save rueian/e4b9981586bab27d303fe470186e5c01 to your computer and use it in GitHub Desktop.
Save rueian/e4b9981586bab27d303fe470186e5c01 to your computer and use it in GitHub Desktop.
signal.go
// https://pkg.go.dev/os/signal
func main() {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
s := <-c
fmt.Println("Got signal:", s)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment