mirror of
https://github.com/fumiama/go-hide-param.git
synced 2026-06-04 23:10:24 +08:00
12 lines
212 B
Go
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)
|
|
}
|