summaryrefslogtreecommitdiff
path: root/cmd/dgrep
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-10-31 17:29:29 +0200
committerPaul Buetow <paul@buetow.org>2021-10-31 17:29:29 +0200
commit0ad1a810131f79f51546ecbd75419119c799937d (patch)
treef9e84fc2db0a7e20e325ff37339a8b7ba680084b /cmd/dgrep
parent2dbfcfc56ecf564cf301e1479522f83d6ca0c966 (diff)
rename spartan mode to plain mode
Diffstat (limited to 'cmd/dgrep')
-rw-r--r--cmd/dgrep/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dgrep/main.go b/cmd/dgrep/main.go
index 8657fa9..6924cf3 100644
--- a/cmd/dgrep/main.go
+++ b/cmd/dgrep/main.go
@@ -30,7 +30,7 @@ func main() {
flag.BoolVar(&args.NoColor, "noColor", false, "Disable ANSII terminal colors")
flag.BoolVar(&args.Quiet, "quiet", false, "Quiet output mode")
flag.BoolVar(&args.RegexInvert, "invert", false, "Invert regex")
- flag.BoolVar(&args.Spartan, "spartan", false, "Spartan output mode")
+ flag.BoolVar(&args.Plain, "plain", false, "Plain output mode")
flag.BoolVar(&args.TrustAllHosts, "trustAllHosts", false, "Trust all unknown host keys")
flag.BoolVar(&displayVersion, "version", false, "Display version")
flag.IntVar(&args.ConnectionsPerCPU, "cpc", config.DefaultConnectionsPerCPU,