CLI Lifecycle
onCLIStart
Announced when shell first starts, but before any commands are run or output has been flushed to the console.
interceptData
shellType
- The stringinteractive
if starting the interactive shell, orcommand
if running a one-off command and exitingargs
- An array of arguments provided from the OS whenbox
was executed.banner
- A string containing the CommandBox banner text that displays when in interactive mode.
This fires every time the reload
command runs and a fresh shell is created.
onCLIExit
Announced right before the shell exits and control is returned back to the OS. This fires every time the reload
command runs right before the shell is destroyed and re-created.
Last updated