CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/ui/text/pseudo_shell.rb
Views: 11655
1
2
module Rex
3
module Ui
4
module Text
5
###
6
#
7
# Pseudo-shell interface that simply includes the Shell mixin.
8
#
9
###
10
class PseudoShell
11
include Shell
12
end
13
end
14
end
15
end
16
17