diff --git a/src/command/client/import.rs b/src/command/client/import.rs index 7e2f5c5c..a4964c51 100644 --- a/src/command/client/import.rs +++ b/src/command/client/import.rs @@ -50,6 +50,9 @@ impl Cmd { } else if shell.ends_with("/fish") { println!("Detected Fish"); import::, _>(db, BATCH_SIZE).await + } else if shell.ends_with("/bash") { + println!("Detected Bash"); + import::, _>(db, BATCH_SIZE).await } else { println!("cannot import {} history", shell); Ok(())