Comportamento strano per i comandi lunghi dopo lo styling del terminale

0

Dopo aver inserito le seguenti istruzioni sul file ~/.bash_profile :

# STYLING THE TERMINAL

# References: 
# - http://apple.stackexchange.com/questions/33677/how-can-i-configure-mac-terminal-to-have-color-ls-output
# - at the end of man page for ls command 

# enables colorised output
CLICOLOR=1 
export CLICOLOR

# ls
export LSCOLORS=ExFxCxDxBxegedabagacad

# PROMPT
# use \h for the complete host name
# use \u for the account name (cell)

PS1="[\e[0;33mnbro\e[m, \e[0;32m\W\e[m] > "
export PS1

# man

# Reference: http://apple.stackexchange.com/questions/182320/is-there-a-way-to-color-parts-of-the-man-pages-on-the-terminal

export LESS_TERMCAP_mb=$(printf '\e[01;31m') # enter blinking mode – red
export LESS_TERMCAP_md=$(printf '\e[1;35m') # enter double-bright mode – bold, magenta
export LESS_TERMCAP_me=$(printf '\e[0m') # turn off all appearance modes (mb, md, so, us)
export LESS_TERMCAP_se=$(printf '\e[0m') # leave standout mode
export LESS_TERMCAP_so=$(printf '\e[01;33m') # enter standout mode – yellow
export LESS_TERMCAP_ue=$(printf '\e[0m') # leave underline mode
export LESS_TERMCAP_us=$(printf '\e[04;36m') # enter underline mode – cyan

quando ho un comando più lungo della larghezza del terminale, questo è il comportamento:

cioè, il comando invece di passare alla riga successiva, passa di nuovo sulla stessa riga sovrascrivendo il prompt. C'è un modo per risolvere questo problema?

    
posta nbro 28.03.2016 - 15:09
fonte

0 risposte

Leggi altre domande sui tag