Add filter flag

This commit is contained in:
2025-03-28 11:20:35 +01:00
parent e8f16dda2b
commit 8a86ae2f40
3 changed files with 21 additions and 1 deletions

View File

@@ -12,4 +12,5 @@ var (
LogLevel = flag.String("loglevel", "INFO", "Set log level: ERROR, WARNING, INFO, DEBUG, TRACE")
Cookfile = flag.String("cook", "**/cook.yml", "Path to cook config files, can be globbed")
ParallelFiles = flag.Int("P", 100, "Number of files to process in parallel")
Filter = flag.String("filter", "", "Filter commands before running them")
)