Can I somehow hide any option using standard library flag? This means flag would work, but --help would not print this option.
And it would be more nice to print --option instead of -option in help. Is it possible?
I think the standard pkg does not support this thing you are trying to achieve. Maybe you can use: https://godoc.org/github.com/jessevdk/go-flags
You could use the cli package instead.