scripts/functions_korn/man

14 lines
405 B
Plaintext
Raw Normal View History

2023-05-06 02:24:23 +02:00
# Mostrar los manuales de los programa con color
function man
{
LESS_TERMCAP_mb=$(printf %b "\033[1;31m") \
LESS_TERMCAP_md=$(printf %b "\033[1;31m") \
LESS_TERMCAP_me=$(printf %b "\033[0m") \
LESS_TERMCAP_se=$(printf %b "\033[0m") \
LESS_TERMCAP_so=$(printf %b "\033[1;44;33m") \
LESS_TERMCAP_ue=$(printf %b "\033[0m") \
LESS_TERMCAP_us=$(printf %b "\033[1;32m") \
command man -a "$@"
}