package main import ( "flag" "os" common "source.heropunch.io/tomo/go-coreutils" ) var ignoreEnv = flag.Bool( "i", false, "Completely ignore the existing environment and execute cmd only with each (var, value) tuple specified.", ) func main() { flag.Parse() if *ignoreEnv { os.Clearenv() } common.PrintEnv() }