more TERM breakage [screen, gnome-terminal]

Hans de Goede j.w.r.degoede at hhs.nl
Tue Aug 10 09:26:42 UTC 2004


>> in /etc/bashrc, this should be changed to:
>> if [ "$PS1" ]; then
>>     case $TERM in
>>         xterm*)
>>     rxvt*)
>>     gnome)
>>     konsole)
>>                 if [ -e /etc/sysconfig/bash-prompt-xterm ]; then
>>                         PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm
>>                 else
>>                 PROMPT_COMMAND='echo -ne "\033]0;${USER}@${ ....
>>                 fi
>>                 ;;
>>
> 
> But then ofcourse this should be valid bash, I only know c, c and c.
> 

So after reading man bash it should be:
if [ "$PS1" ]; then
     case $TERM in
         xterm* | rxvt* | gnome | konsole)
                 if [ -e /etc/sysconfig/bash-prompt-xterm ]; then
                         PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm
                 else
                 PROMPT_COMMAND='echo -ne "\033]0;${USER}@${ ....
                 fi
                 ;;

Regards,

Hans

-- 
EuropeSwPatentFree http://EuropeSwPatentFree.hispalinux.es





More information about the fedora-devel-list mailing list