From 4827866ab7096535c6eac6ae6767a1bd48619cf9 Mon Sep 17 00:00:00 2001 From: HAHWUL Date: Tue, 10 Dec 2024 00:25:48 +0900 Subject: [PATCH] Enhance command-line flag descriptions for pipe command Signed-off-by: HAHWUL --- cmd/pipe.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/pipe.go b/cmd/pipe.go index c6e5f236..05833c25 100644 --- a/cmd/pipe.go +++ b/cmd/pipe.go @@ -159,8 +159,8 @@ func runSingleMode(targets []string, sf bool) { func init() { rootCmd.AddCommand(pipeCmd) - pipeCmd.Flags().Bool("multicast", false, "Parallel scanning N*Host mode (show only poc code)") - pipeCmd.Flags().Bool("mass", false, "Parallel scanning N*Host mode (show only poc code)") - pipeCmd.Flags().Bool("silence-force", false, "Only print PoC (not print progress)") - pipeCmd.Flags().Int("mass-worker", 10, "Parallel worker of --mass and --multicast option") + pipeCmd.Flags().Bool("multicast", false, "Enable parallel scanning in N*Host mode (only shows PoC code). Example: --multicast") + pipeCmd.Flags().Bool("mass", false, "Enable parallel scanning in N*Host mode (only shows PoC code). Example: --mass") + pipeCmd.Flags().Bool("silence-force", false, "Only print PoC code, suppress progress output. Example: --silence-force") + pipeCmd.Flags().Int("mass-worker", 10, "Set the number of parallel workers for --mass and --multicast options. Example: --mass-worker 10") }