in cmd/seccomp-profiler/main.go [71:79]
func init() {
flag.StringVar(&format, "format", "code", "output format (code or config)")
flag.StringVar(&templateFile, "t", "", "custom code template file")
flag.StringVar(&packageName, "pkg", "main", "package name to use in source code")
flag.BoolVar(&debug, "d", false, "add debug to the config output")
flag.Var(&blacklist, "b", "blacklist syscalls by name")
flag.Var(&allowList, "allow", "allow syscalls by name (always include them in the profile)")
flag.StringVar(&outFile, "out", "-", "output filename")
}