2005-07-09 21:18:49 +00:00
|
|
|
require 'msf/ui'
|
2005-05-22 19:39:21 +00:00
|
|
|
|
|
|
|
module Msf
|
|
|
|
module Ui
|
|
|
|
module Console
|
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# Shell
|
|
|
|
# -----
|
|
|
|
#
|
|
|
|
# The shell class provides a command-prompt style interface in a
|
2005-07-14 22:45:10 +00:00
|
|
|
# generic fashion. This wrapper is just here in case we want to do custom
|
|
|
|
# shell extensions that don't make sense to throw in the rex shell.
|
2005-05-22 19:39:21 +00:00
|
|
|
#
|
|
|
|
###
|
|
|
|
module Shell
|
|
|
|
|
2005-07-14 22:45:10 +00:00
|
|
|
include Rex::Ui::Text::Shell
|
2005-05-22 19:39:21 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end end end
|