Re: Prompt in Bash [fixed]

1997-09-07 Thread Rob Browning
Will Lowe <[EMAIL PROTECTED]> writes: > Yup, kill the "eval" and life is good. Thanks, Mr. Browning. You're welcome, but sheesh, call me Rob :> One final word for those who were following this thread. This if [ ${PS1:-UNSET} = UNSET ] should have been if [ "${PS1:-UNSET}" = UNSET ] W

Re: Prompt in Bash [fixed]

1997-09-06 Thread Will Lowe
On 6 Sep 1997, Rob Browning wrote: > "Gonzalo A. Diethelm" <[EMAIL PROTECTED]> writes: > > > Rob, thanks a lot for your script. I think there is a small glitch, > > though: > export PROMPT_COMMAND='eval set_titlebar [EMAIL PROTECTED]:`my_dirname`' Yup, kill the "eval" and life is good. Thanks