const os.O_WRONLY

7 uses

	os (current package)
		file.go#L74: 	O_WRONLY int = syscall.O_WRONLY // open the file write-only.
		file.go#L696: 	f, err := OpenFile(name, O_WRONLY|O_CREATE|O_TRUNC, perm)

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

	src.elv.sh/pkg/eval
		compile_effect.go#L442: 		return os.O_WRONLY | os.O_CREATE | os.O_TRUNC
		compile_effect.go#L446: 		return os.O_WRONLY | os.O_CREATE | os.O_APPEND

	src.elv.sh/pkg/logutil
		logutil.go#L50: 	file, err := os.OpenFile(fname, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)

	testing
		testing.go#L1574: 			f, err = os.OpenFile(*testlog, os.O_WRONLY, 0)