5

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??

GetFree
  • 1,460
  • 7
  • 23
  • 37

4 Answers4

5

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
JKG
  • 151
  • 4
  • 1
    This works only when you're logged in locally, but fails when you invoke the command remotely via ssh. http://tldp.org/LDP/abs/html/intandnonint.html – Lalit Kumar B Mar 26 '18 at 12:34
3

Put the following at the beginning of /etc/bashrc

[ -z "$PS1" ] && return
cstamas
  • 6,607
  • 24
  • 42
2

Here is a description of all 3 methods of doing this:
http://tldp.org/LDP/abs/html/intandnonint.html

GetFree
  • 1,460
  • 7
  • 23
  • 37
1

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
Dennis Williamson
  • 60,515
  • 14
  • 113
  • 148