diff --git a/src/backup/catalog_shell.rs b/src/backup/catalog_shell.rs index d59f738d..99552cd9 100644 --- a/src/backup/catalog_shell.rs +++ b/src/backup/catalog_shell.rs @@ -89,6 +89,10 @@ pub fn catalog_shell_cli() -> CommandLineInterface { "find", CliCommand::new(&API_METHOD_FIND_COMMAND).arg_param(&["pattern"]), ) + .insert( + "exit", + CliCommand::new(&API_METHOD_EXIT), + ) .insert_help(), ) } @@ -104,6 +108,14 @@ fn complete_path(complete_me: &str, _map: &HashMap) -> Vec Result<(), Error> { + Ok(()) +} + #[api(input: { properties: {} })] /// List the current working directory. async fn pwd_command() -> Result<(), Error> { @@ -439,6 +451,9 @@ impl Shell { SHELL = Some(this as *mut Shell as usize); } while let Ok(line) = this.rl.readline(&this.prompt) { + if line == "exit" { + break; + } let helper = this.rl.helper().unwrap(); let args = match cli::shellword_split(&line) { Ok(args) => args,