const os.DevNull

6 uses

	os (current package)
		file_unix.go#L201: const DevNull = "/dev/null"

	os/exec
		exec.go#L246: 		f, err = os.Open(os.DevNull)
		exec.go#L291: 		f, err = os.OpenFile(os.DevNull, os.O_WRONLY, 0)

	src.elv.sh/pkg/daemon
		spawn.go#L87: 	in, err := os.OpenFile(os.DevNull, os.O_RDONLY, 0)

	src.elv.sh/pkg/eval
		port.go#L74: 	f, err := os.Open(os.DevNull)
		port.go#L77: 			"cannot open %s, shell might not function normally\n", os.DevNull)