Lines Matching refs:flag
60 …sortEntries = flag.Bool("s", false, "sort entries (defaults to the order from the input zip f…
61 emulateJar = flag.Bool("j", false, "sort zip entries using jar ordering (META-INF first)")
62 emulatePar = flag.Bool("p", false, "merge zip entries based on par format")
66 stripDirEntries = flag.Bool("D", false, "strip directory entries from the output zip file")
67 manifest = flag.String("m", "", "manifest file to insert in jar")
68 pyMain = flag.String("pm", "", "__main__.py file to insert in par")
69 prefix = flag.String("prefix", "", "A file to prefix to the zip file")
70 …ignoreDuplicates = flag.Bool("ignore-duplicates", false, "take each entry from the first zip it ex…
74 …flag.Var(&stripDirs, "stripDir", "directories to be excluded from the output zip, accepts wildcard…
75 flag.Var(&stripFiles, "stripFile", "files to be excluded from the output zip, accepts wildcards")
76 …flag.Var(&zipsToNotStrip, "zipToNotStrip", "the input zip file which is not applicable for strippi…
80 flag.Usage = func() {
82 flag.PrintDefaults()
86 flag.Parse()
87 args := flag.Args()
89 flag.Usage()