diff --git a/src/apps/terminal/Shell.cpp b/src/apps/terminal/Shell.cpp index 46fea57e37..bc1d5203d9 100644 --- a/src/apps/terminal/Shell.cpp +++ b/src/apps/terminal/Shell.cpp @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include @@ -335,7 +336,7 @@ initialize_termios(struct termios &tio) status_t Shell::_Spawn(int row, int col, const char *encoding, int argc, const char **argv) { - const char *kDefaultShellCommand[] = { "/bin/sh", "--login", NULL }; + const char *kDefaultShellCommand[] = { "/bin/bash", "--login", NULL }; if (argv == NULL || argc == 0) { argv = kDefaultShellCommand;