scripts/functions_korn/man

13 lines
397 B
Bash

# 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 "$@"
}