Files
BigChef/utils/flags.go

11 lines
198 B
Go

package utils
import (
"flag"
)
var (
ParallelFiles = flag.Int("P", 100, "Number of files to process in parallel")
Filter = flag.String("f", "", "Filter commands before running them")
)