1
0
mirror of https://github.com/fumiama/go-hide-param.git synced 2026-06-04 23:10:24 +08:00
Files
go-hide-param/unix.go
2023-11-21 22:53:56 +09:00

12 lines
212 B
Go

//go:build !windows
// +build !windows
package gohideparam
// Hide replace arg at position with three `*`
//
// or less than three if len(os.Args[position]) < 3
func Hide(position int) {
hideOSArg(position)
}