Skip to content

Instantly share code, notes, and snippets.

@plumpy
Created November 23, 2024 15:40
Show Gist options
  • Save plumpy/990c330ddba06f7230d02bb71b759079 to your computer and use it in GitHub Desktop.
Save plumpy/990c330ddba06f7230d02bb71b759079 to your computer and use it in GitHub Desktop.
Go binary that waits n seconds to exit after receiving SIGINT
package main
import (
"fmt"
"os"
"os/signal"
"strconv"
"syscall"
"time"
)
func main() {
if len(os.Args) != 2 {
fmt.Fprintf(os.Stderr, "Needs an argument\n")
os.Exit(1)
}
wait, err := strconv.Atoi(os.Args[1])
if err != nil {
fmt.Fprintf(os.Stderr, "Error parsing %w\n", os.Args[1])
os.Exit(1)
}
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT)
done := make(chan bool, 1)
go func() {
<- sigs
fmt.Printf("Recieved SIGINT, waiting %d seconds.\n", wait)
time.Sleep(time.Duration(wait) * time.Second)
done <- true
}()
fmt.Println("awaiting signal")
<-done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment