scripts/functions_korn/man

13 lines
397 B
Plaintext
Raw Normal View History

2023-05-06 02:24:23 +02:00
# Mostrar los manuales de los programa con color
2023-05-25 11:24:33 +02:00
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 "$@"
2023-05-06 02:24:23 +02:00
}