From 40860f6f2c7b1fe52aa87fce0e24c78ceecd32ac Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 29 Feb 2020 18:47:25 +0100 Subject: [PATCH] Terminal: Put PAGER=more in the default environment This should be done at some other level (shell rc script for example), this is just to make "git" stop complaining that I don't have "less". --- Applications/Terminal/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/Terminal/main.cpp b/Applications/Terminal/main.cpp index 8de9868780..6fa6ec987e 100644 --- a/Applications/Terminal/main.cpp +++ b/Applications/Terminal/main.cpp @@ -117,7 +117,7 @@ static void run_command(int ptm_fd, String command) args[1] = "-c"; args[2] = command.characters(); } - const char* envs[] = { "PROMPT=\\X\\u@\\h:\\w\\a\\e[33;1m\\h\\e[0m \\e[32;1m\\w\\e[0m \\p ", "TERM=xterm", "PATH=/bin:/usr/bin:/usr/local/bin", nullptr }; + const char* envs[] = { "PROMPT=\\X\\u@\\h:\\w\\a\\e[33;1m\\h\\e[0m \\e[32;1m\\w\\e[0m \\p ", "TERM=xterm", "PAGER=more", "PATH=/bin:/usr/bin:/usr/local/bin", nullptr }; rc = execve(shell.characters(), const_cast(args), const_cast(envs)); if (rc < 0) { perror("execve");