From b56213c3105d5bf5888da17fdf15fad12761b58b Mon Sep 17 00:00:00 2001 From: Helvio Pedreschi Date: Mon, 23 Sep 2024 13:14:18 -0400 Subject: [PATCH] Unreverse Include/Exclude (#52) --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 8dbc351..6162e4e 100644 --- a/main.go +++ b/main.go @@ -23,8 +23,8 @@ var ( ) type arguments struct { - Exclude []string `arg:"-n,--include" help:"only include URLs with PERL Regular Expressions support"` - Include []string `arg:"-x,--exclude" help:"exclude URLs with PERL Regular Expressions support"` + Include []string `arg:"-n,--include" help:"only include URLs with PERL Regular Expressions support"` + Exclude []string `arg:"-x,--exclude" help:"exclude URLs with PERL Regular Expressions support"` Output string `arg:"-o,--output" help:"output directory to write files to"` URLs []string `arg:"positional"`