Last active
April 10, 2020 03:23
-
-
Save Jamelle-Boose/11f362846f654931bf0c33589d6404e1 to your computer and use it in GitHub Desktop.
Colorize Man Pages #bash #bashrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export LESS_TERMCAP_mb=$(printf '\e[01;31m') | |
export LESS_TERMCAP_md=$(printf '\e[01;35m') | |
export LESS_TERMCAP_me=$(printf '\e[0m') | |
export LESS_TERMCAP_se=$(printf '\e[0m') | |
export LESS_TERMCAP_so=$(printf '\e[01;33m') | |
export LESS_TERMCAP_ue=$(printf '\e[0m') | |
export LESS_TERMCAP_us=$(printf '\e[04;36m') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Code to add colorized man pages
Add the following code to .bashrc file, then source or reload .bashrc (source or . .bashrc)