函数定义#
Args#
详细描述#
Args() []string
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
Bool#
详细描述#
Bool 获取对应名称的命令行参数,并将其转换为 bool 类型返回
Example:
verbose = cli.Bool("verbose") // --verbose 则为true
Bool(name string, opts ...SetCliExtraParam) bool
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
Double#
详细描述#
Double 获取对应名称的命令行参数,并将其转换为 float 类型返回
Example:
percent = cli.Double("percent") // --percent 0.5 则 percent 为 0.5
Double(name string, opts ...SetCliExtraParam) float64
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | float64 | |
File#
详细描述#
File 获取对应名称的命令行参数,根据其传入的值读取其对应文件内容并返回 []byte 类型
Example:
file = cli.File("file")// --file /etc/passwd 则 file 为 /etc/passwd 文件中的内容
File(name string, opts ...SetCliExtraParam) []byte
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []byte | |
FileNames#
详细描述#
FileNames 获取对应名称的命令行参数,获得选中的所有文件路径,并返回 []string 类型
Example:
file = cli.FileNames("file")// --file /etc/passwd,/etc/hosts 则 file 为 ["/etc/passwd", "/etc/hosts"]
FileNames(name string, opts ...SetCliExtraParam) []string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
FileOrContent#
详细描述#
FileOrContent 获取对应名称的命令行参数
根据其传入的值尝试读取其对应文件内容,如果无法读取则直接返回,最后返回 []byte 类型
Example:
foc = cli.FileOrContent("foc")// --foc /etc/passwd 则 foc 为 /etc/passwd 文件中的内容// --file "asd" 则 file 为 "asd"
FileOrContent(name string, opts ...SetCliExtraParam) []byte
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []byte | |
Float#
详细描述#
Float 获取对应名称的命令行参数,并将其转换为 float 类型返回
Example:
percent = cli.Float("percent") // --percent 0.5 则 percent 为 0.5
Float(name string, opts ...SetCliExtraParam) float64
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | float64 | |
FolderName#
详细描述#
FolderName 获取对应名称的命令行参数,获得选中的文件夹路径,并返回 string 类型
Example:
folder = cli.FolderName("folder")// --folder /etc 则 folder 为 "/etc"
FolderName(name string, opts ...SetCliExtraParam) string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | string | |
HTTPPacket#
详细描述#
HTTPPacket 获取对应名称的命令行参数,并将其转换为 string 类型返回
其作为一个独立脚本运行时与 cli.String 没有区别,仅在 Yakit 图形化中展示为 HTTP 报文形式
Example:
target = cli.HTTPPacket("target") // --target yaklang.com 则 target 为 yaklang.com
HTTPPacket(name string, opts ...SetCliExtraParam) string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | string | |
Have#
详细描述#
Have 获取对应名称的命令行参数,并将其转换为 bool 类型返回
Example:
verbose = cli.Have("verbose") // --verbose 则为true
Have(name string, opts ...SetCliExtraParam) bool
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
Host#
详细描述#
Host 获取对应名称的命令行参数,根据","切割并尝试解析CIDR网段并返回 []string 类型
Example:
hosts = cli.Host("hosts")// --hosts 192.168.0.0/24,172.17.0.1 则 hosts 为 192.168.0.0/24对应的所有IP和172.17.0.1
Host(name string, opts ...SetCliExtraParam) []string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
Hosts#
详细描述#
Hosts 获取对应名称的命令行参数,根据","切割并尝试解析CIDR网段并返回 []string 类型
Example:
hosts = cli.Hosts("hosts")// --hosts 192.168.0.0/24,172.17.0.1 则 hosts 为 192.168.0.0/24对应的所有IP和172.17.0.1
Hosts(name string, opts ...SetCliExtraParam) []string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
Int#
详细描述#
Int 获取对应名称的命令行参数,并将其转换为 int 类型返回
Example:
port = cli.Int("port") // --port 80 则 port 为 80
Int(name string, opts ...SetCliExtraParam) int
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
Integer#
详细描述#
Integer 获取对应名称的命令行参数,并将其转换为 int 类型返回
Example:
port = cli.Integer("port") // --port 80 则 port 为 80
Integer(name string, opts ...SetCliExtraParam) int
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
LineDict#
详细描述#
LineDict 获取对应名称的命令行参数
根据其传入的值尝试读取其对应文件内容,如果无法读取则作为字符串,最后根据换行符切割,返回 []string 类型
Example:
dict = cli.LineDict("dict")// --dict /etc/passwd 则 dict 为 /etc/passwd 文件中的逐行的内容// --dict "asd" 则 dict 为 ["asd"]
LineDict(name string, opts ...SetCliExtraParam) []string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
Net#
详细描述#
Net 获取对应名称的命令行参数,根据","切割并尝试解析CIDR网段并返回 []string 类型
Example:
hosts = cli.Net("hosts")// --hosts 192.168.0.0/24,172.17.0.1 则 hosts 为 192.168.0.0/24对应的所有IP和172.17.0.1
Net(name string, opts ...SetCliExtraParam) []string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
Network#
详细描述#
NetWork 获取对应名称的命令行参数,根据","切割并尝试解析CIDR网段并返回 []string 类型
Example:
hosts = cli.NetWork("hosts")// --hosts 192.168.0.0/24,172.17.0.1 则 hosts 为 192.168.0.0/24对应的所有IP和172.17.0.1
Network(name string, opts ...SetCliExtraParam) []string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
Port#
详细描述#
Port 获取对应名称的命令行参数,根据","与"-"切割并尝试解析端口并返回 []int 类型
Example:
ports = cli.Port("ports")// --ports 10086-10088,23333 则 ports 为 [10086, 10087, 10088, 23333]
Port(name string, opts ...SetCliExtraParam) []int
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
Ports#
详细描述#
Ports 获取对应名称的命令行参数,根据","与"-"切割并尝试解析端口并返回 []int 类型
Example:
ports = cli.Ports("ports")// --ports 10086-10088,23333 则 ports 为 [10086, 10087, 10088, 23333]
Ports(name string, opts ...SetCliExtraParam) []int
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
SetCliName#
详细描述#
SetCliName 设置此命令行程序的名称
这会在命令行输入 --help 或执行cli.check()
后参数非法时显示
Example:
cli.SetCliName("example-tools")
SetCliName(name string)
SetDoc#
详细描述#
SetDoc 设置此命令行程序的文档
这会在命令行输入 --help 或执行cli.check()
后参数非法时显示
Example:
cli.SetDoc("example-tools is a tool for example")
SetDoc(document string)
参数名 | 参数类型 | 参数解释 |
---|
document | string | |
String#
详细描述#
String 获取对应名称的命令行参数,并将其转换为 string 类型返回
Example:
target = cli.String("target") // --target yaklang.com 则 target 为 yaklang.com
String(name string, opts ...SetCliExtraParam) string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | string | |
StringSlice#
详细描述#
StringSlice 获取对应名称的命令行参数,将其字符串根据","切割返回 []string 类型
Example:
targets = cli.StringSlice("targets")// --targets yaklang.com,google.com 则 targets 为 ["yaklang.com", "google.com"]
StringSlice(name string, options ...SetCliExtraParam) []string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
options | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
Text#
详细描述#
Text 获取对应名称的命令行参数,并将其转换为 string 类型返回
其作为一个独立脚本运行时与 cli.String 没有区别,仅在 Yakit 图形化中展示为文本框形式
Example:
target = cli.Text("target") // --target yaklang.com 则 target 为 yaklang.com
Text(name string, opts ...SetCliExtraParam) string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | string | |
详细描述#
UI(opts ...UIParams)
参数名 | 参数类型 | 参数解释 |
---|
opts | ...UIParams | |
Url#
详细描述#
Url 获取对应名称的命令行参数,根据","切割并尝试将其转换为符合URL格式并返回 []string 类型
Example:
urls = cli.Url("urls")// --urls yaklang.com:443,google.com:443 则 urls 为 ["https://yaklang.com", "https://google.com"]
Url(name string, opts ...SetCliExtraParam) []string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
Urls#
详细描述#
Urls 获取对应名称的命令行参数,根据","切割并尝试将其转换为符合URL格式并返回 []string 类型
Example:
urls = cli.Urls("urls")// --urls yaklang.com:443,google.com:443 则 urls 为 ["https://yaklang.com", "https://google.com"]
Urls(name string, opts ...SetCliExtraParam) []string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
YakCode#
详细描述#
YakCode 获取对应名称的命令行参数,并将其转换为 string 类型返回
其作为一个独立脚本运行时与 cli.String 没有区别,仅在 Yakit 图形化中展示为 Yak 代码形式
Example:
target = cli.YakCode("target") // --target yaklang.com 则 target 为 yaklang.com
YakCode(name string, opts ...SetCliExtraParam) string
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
opts | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | string | |
YakitPlugin#
详细描述#
YakitPlugin 获取名称为 yakit-plugin-file 的命令行参数
根据其传入的值读取其对应文件内容并根据"|"切割并返回 []string 类型,表示各个插件名
Example:
plugins = cli.YakitPlugin()// --yakit-plugin-file plugins.txt 则 plugins 为 plugins.txt 文件中的各个插件名
YakitPlugin(options ...SetCliExtraParam) []string
参数名 | 参数类型 | 参数解释 |
---|
options | ...SetCliExtraParam | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | []string | |
check#
详细描述#
check 用于检查命令行参数是否合法,这主要检查必要参数是否传入与传入值是否合法
Example:
target = cli.String("target", cli.SetRequired(true))cli.check()
check()
help#
详细描述#
help 用于输出命令行程序的帮助信息
Example:
help(w ...io.Writer)
hideGroup#
详细描述#
hideGroup(group string) UIParams
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | UIParams | |
hideParams#
详细描述#
hideParams(params ...string) UIParams
参数名 | 参数类型 | 参数解释 |
---|
params | ...string | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | UIParams | |
setCliGroup#
详细描述#
setCliGroup 是一个选项函数,设置参数的分组
Example:
cli.String("target", cli.setCliGroup("common"))cli.Int("port", cli.setCliGroup("common"))cli.Int("threads", cli.setCliGroup("request"))cli.Int("retryTimes", cli.setCliGroup("request"))
setCliGroup(group string) SetCliExtraParam
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | SetCliExtraParam | |
setDefault#
详细描述#
setDefault 是一个选项函数,设置参数的默认值
Example:
cli.String("target", cli.SetDefault("yaklang.com"))
setDefault(i any) SetCliExtraParam
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | SetCliExtraParam | |
setHelp#
详细描述#
setHelp 是一个选项函数,设置参数的帮助信息
这会在命令行输入 --help 或执行cli.check()
后参数非法时显示
Example:
cli.String("target", cli.SetHelp("target host or ip"))
setHelp(i string) SetCliExtraParam
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | SetCliExtraParam | |
setMultipleSelect#
详细描述#
SetMultipleSelect 是一个选项函数,设置参数是否可以多选
此选项仅在cli.StringSlice
中生效
Example:
cli.StringSlice("targets", cli.SetMultipleSelect(true))
setMultipleSelect(multiSelect bool) SetCliExtraParam
参数名 | 参数类型 | 参数解释 |
---|
multiSelect | bool | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | SetCliExtraParam | |
setRequired#
详细描述#
setRequired 是一个选项函数,设置参数是否必须
Example:
cli.String("target", cli.SetRequired(true))
setRequired(t bool) SetCliExtraParam
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | SetCliExtraParam | |
setSelectOption#
详细描述#
setSelectOption 是一个选项函数,设置参数的下拉框选项
此选项仅在cli.StringSlice
中生效
Example:
cli.StringSlice("targets", cli.setSelectOption("下拉框选项", "下拉框值"))
setSelectOption(name string, value string) SetCliExtraParam
参数名 | 参数类型 | 参数解释 |
---|
name | string | |
value | string | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | SetCliExtraParam | |
setShortName#
详细描述#
setShortName 是一个选项函数,设置参数的短名称
Example:
cli.String("target", cli.setShortName("t"))
在命令行可以使用-t
代替--target
setShortName(shortName string) SetCliExtraParam
参数名 | 参数类型 | 参数解释 |
---|
shortName | string | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | SetCliExtraParam | |
setVerboseName#
详细描述#
setVerboseName 是一个选项函数,设置参数的中文名
Example:
cli.String("target", cli.setVerboseName("目标"))
setVerboseName(verboseName string) SetCliExtraParam
参数名 | 参数类型 | 参数解释 |
---|
verboseName | string | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | SetCliExtraParam | |
showGroup#
详细描述#
showGroup(group string) UIParams
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | UIParams | |
showParams#
详细描述#
showParams(params ...string) UIParams
参数名 | 参数类型 | 参数解释 |
---|
params | ...string | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | UIParams | |
when#
详细描述#
when(expression string) UIParams
参数名 | 参数类型 | 参数解释 |
---|
expression | string | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | UIParams | |
whenDefault#
详细描述#
whenDefault() UIParams
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | UIParams | |
whenEqual#
详细描述#
whenEqual(param string, value string) UIParams
参数名 | 参数类型 | 参数解释 |
---|
param | string | |
value | string | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | UIParams | |
whenFalse#
详细描述#
whenFalse(param string) UIParams
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | UIParams | |
whenNotEqual#
详细描述#
whenNotEqual(param string, value string) UIParams
参数名 | 参数类型 | 参数解释 |
---|
param | string | |
value | string | |
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | UIParams | |
whenTrue#
详细描述#
whenTrue(param string) UIParams
返回值#
返回值(顺序) | 返回值类型 | 返回值解释 |
---|
r1 | UIParams | |