Land #10816, Add a `bg` alias for `background` command
parent
7d04ebcf5f
commit
a4d2bf30c1
|
@ -50,6 +50,7 @@ class Console::CommandDispatcher::Core
|
|||
c = {
|
||||
'?' => 'Help menu',
|
||||
'background' => 'Backgrounds the current session',
|
||||
'bg' => 'Alias for background',
|
||||
'close' => 'Closes a channel',
|
||||
'channel' => 'Displays information or control active channels',
|
||||
'exit' => 'Terminate the meterpreter session',
|
||||
|
@ -330,6 +331,9 @@ class Console::CommandDispatcher::Core
|
|||
client.interacting = false
|
||||
end
|
||||
|
||||
alias cmd_bg cmd_background
|
||||
alias cmd_bg_help cmd_background_help
|
||||
|
||||
#
|
||||
# Displays information about active channels
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue