diff --git a/userspace/programs/Shell/main.cpp b/userspace/programs/Shell/main.cpp index e217a35c86..4a6ba00990 100644 --- a/userspace/programs/Shell/main.cpp +++ b/userspace/programs/Shell/main.cpp @@ -225,7 +225,7 @@ static PipedCommand parse_piped_command(BAN::StringView command_view) if (i + 1 < command_view.size() && c == '\\') { char next = command_view[i + 1]; - if (next == '\'' || next == '"') + if (next == '\'' || next == '"' || next == ' ') { if (i + 1 < command_view.size()) MUST(current_argument.push_back(next));