Wednesday, January 19, 2011

Prompt customization: how to detect when there is no tty

I have a customized prompt with colors (using tput) and every time I start a non-interactive session in the server I get a bunch of errors.
For instance if I start a non-interactive session like this:

ssh root@hostname6 "echo 'hello' ; echo $TERM"

The output I get is:

hello
xterm
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
stdin: is not a tty

So the $TERM variable has a value even when the session is non-interactive.

What condition do I have to detect so that when I start a non-interactive shell the prompt customization part is omited??

  • Put the following at the beginning of /etc/bashrc

    [ -z "$PS1" ] && return
    
    freiheit : +1 this seems to be the technique many distributions use in the stock bashrc
    GetFree : How is this supposed to work? The PS1 variable doesn't exist when the shell is not interactive?
    cstamas : Yes. It is set by default for interactive shells and it is not for non-interactive ones.
    From cstamas
  • The tput commands are evaluated at the time that the assignment to PS1 is made. Since the startup files are processed when an ssh session is started, the assignment is made even though your session is not interactive. You can test for that and only make your assignment when you are actually starting an interactive session.

    if [[ $- =~ i ]]
    then
        # set PS1 using tput
    else
        # set a plain PS1 (or use hard-coded escape sequences)
    fi
    
  • There's a bash built-in test for TTY. I forget when it was added, 3.0? I believe it's relatively new. I use it in scripts where I need different behavior when it's run from cron or a user runs it directly.

    if [ -t 0 ]; then
       echo "I'm a TTY"
    fi
    
    From JKG
  • Here is a description of all 3 methods of doing this:
    http://tldp.org/LDP/abs/html/intandnonint.html

    From GetFree

0 comments:

Post a Comment