Less
如何在 LESS 環境變數中設置 -R?
該問題基於此答案。
如何在 LESS 環境變數中設置 -R?
取自手冊頁:
Options are also taken from the environment variable "LESS". For example, to avoid typing "less -options ..." each time less is invoked, you might tell csh: setenv LESS "-options" or if you use sh: LESS="-options"; export LESS
如果您使用 Bash,這是各種發行版的預設設置,我們可以這樣做:
export LESS="-R"
如果您想在 shell/login 會話中永久保存,那麼您需要將上面的命令添加到適當的文件中,再次以 Bash 為例,您可以使用文本編輯器打開 $HOME/.bashrc 並刪除在導出命令中。這意味著每次 Bash 呼叫它都會執行導出命令,設置您的 Less 首選項。
希望有幫助:-)