How to translate small bash code to csh / tcsh (setting GNOME terminal title)
- by user1069609
I need help to translate the following bash code to tcsh :
case $TERM in
(xterm*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}\007"'
;;
esac
It is part of my .bashrc on all the machines which have bash as login shell. The code sets the GNOME terminal title to user@somehost (obviously with the real user name and host name). However some hosts have tcsh as login shell, so I need to translate the code into tcsh and add it to the .tcshrc .
I considered to somehow source another file with the bash code from inside the .tcshrc file, but I couldn't make it work.