1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00
git-svn-id: file:///home/svn/framework3/trunk@9994 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
Carlos Perez 2010-08-13 11:38:08 +00:00
parent 10c2bfb64e
commit 2789e9007e

View File

@ -14,8 +14,8 @@ wininfo = client.sys.config.sysinfo
"-rc" => [ true,"Text file with list of commands, one per line."]
)
#Setting Argument variables
commands = []
script = []
commands = nil
script = nil
outfile = nil
help = 0
@ -88,15 +88,15 @@ end
if args.length == 0 or help == 1
usage
elsif outfile == nil
list_exec(session,commands).each_line do |l|
print_status(l.chomp)
elsif commands or script
if outfile
filewrt(outfile, list_exec(session,commands))
else
list_exec(session,commands).each_line do |l|
print_status(l.chomp)
end
end
raise Rex::Script::Completed
else
print_status("Saving output of Command to #{outfile}")
filewrt(outfile, list_exec(session,commands))
raise Rex::Script::Completed
usage
end