diff --git a/Userland/Utilities/man.cpp b/Userland/Utilities/man.cpp index 27ff9284a49..cc026c21b69 100644 --- a/Userland/Utilities/man.cpp +++ b/Userland/Utilities/man.cpp @@ -23,7 +23,7 @@ static ErrorOr pipe_to_pager(DeprecatedString const& command) { - char const* argv[] = { "sh", "-c", command.characters(), nullptr }; + char const* argv[] = { "sh", "--skip-shellrc", "-c", command.characters(), nullptr }; auto stdout_pipe = TRY(Core::System::pipe2(O_CLOEXEC));