11 lines
198 B
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")
|
|
)
|