Single char args multi_console_console_command

bug/bundler_fix
Josh Hale 2017-08-06 17:46:05 -05:00
parent 83cd0bc977
commit 40313bf623
1 changed files with 6 additions and 6 deletions

View File

@ -17,9 +17,9 @@
# Setting Arguments
@@exec_opts = Rex::Parser::Arguments.new(
"-h" => [ false,"Help menu." ],
"-sl" => [ false,"Hide commands output for work in background sessions"],
"-cl" => [ true,"Commands to execute. The command must be enclosed in double quotes and separated by a comma."],
"-rc" => [ true,"Text file with list of commands, one per line."]
"-s" => [ false,"Hide commands output for work in background sessions"],
"-c" => [ true,"Commands to execute. The command must be enclosed in double quotes and separated by a comma."],
"-r" => [ true,"Text file with list of commands, one per line."]
)
commands = nil
@ -36,9 +36,9 @@ end
@@exec_opts.parse(args) { |opt, idx, val|
case opt
when "-cl"
when "-c"
commands = val.split(",")
when "-rc"
when "-r"
script = val
if not ::File.exist?(script)
raise "Command List File does not exists!"
@ -51,7 +51,7 @@ end
when "-h"
help = true
when "-sl"
when "-s"
silence = true
end
}