github.com/mithrandie/csvq@v1.18.1/lib/action/signals_posix.go (about)

     1  //go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || windows
     2  
     3  package action
     4  
     5  import (
     6  	"os"
     7  	"syscall"
     8  )
     9  
    10  var Signals = []os.Signal{
    11  	syscall.SIGINT,
    12  	syscall.SIGQUIT,
    13  	syscall.SIGTERM,
    14  }