From 9c3116190ee1a5d8df981d073a8a7aa74f701882 Mon Sep 17 00:00:00 2001 From: j3ssie Date: Sun, 27 Aug 2023 20:13:11 +0700 Subject: [PATCH] Release v4.5.1 --- cmd/usage.go | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/cmd/usage.go b/cmd/usage.go index bddd8ba..9e5a97c 100644 --- a/cmd/usage.go +++ b/cmd/usage.go @@ -111,26 +111,45 @@ func UtilsUsage() string { h += " osmedeus health git\n" h += " osmedeus health cloud\n" h += " osmedeus version --json \n" + h += "\n" + + h += color.HiBlackString(" ## Set the base threads hold\n") + h += " osmedeus config set --threads-hold=10\n" + h += "\n" h += color.HiBlackString(" ## Update utilities\n") h += " osmedeus update \n" h += " osmedeus update --vuln\n" h += " osmedeus update --force --clean \n" + h += "\n" h += color.HiBlackString(" ## Workflow utilities\n") h += " osmedeus workflow list \n" h += " osmedeus workflow view -f general\n" + h += "\n" - h += color.HiBlackString(" ## Other utilities\n") + h += color.HiBlackString(" ## Tmux utilities\n") h += " osmedeus utils tmux ls \n" h += " osmedeus utils tmux logs -A -l 10 \n" + h += "\n" + + h += color.HiBlackString(" ## Process utilities\n") h += " osmedeus utils ps \n" + h += " osmedeus utils ps --proc 'jaeles' \n" + h += "\n" + + h += color.HiBlackString(" ## List all the sub proccess running by osmedeus\n") h += " osmedeus utils ps --osm \n" + h += "\n" + + h += color.HiBlackString(" ## Kill all the sub proccess running by osmedeus\n") h += " osmedeus utils ps --osm --kill \n" - h += " osmedeus utils ps --proc 'jaeles' \n" + h += "\n" + + h += color.HiBlackString(" ## Other utilities\n") h += " osmedeus utils cron --cmd 'osmdeus scan -t example.com' --sch 60\n" h += " osmedeus utils cron --for --cmd 'osmedeus scan -t example.com'\n" - h += " osmedeus config set --threads-hold=10\n" + return h }