PS1 command! ?

2003-02-12 Thread bastill
'id -u' in 0) PS1=$(PS1)# ;; *) PS1=$(PS1)S ;; esac Yet on login I get this error message: bash: PS1: command not found and the prompt is S Why? and how can I fix this? -- Brian --- This message sent through Adam Internet Webmail

Re: PS1 command! ?

2003-02-12 Thread Matthew Hunt
On Thu, Feb 13, 2003 at 10:01:58AM +1030, [EMAIL PROTECTED] wrote: *) PS1=$(PS1)S ;; Yet on login I get this error message: bash: PS1: command not found $(foo) is the same as `foo`. It runs the command foo and uses its output. So the shell is looking for a command called PS1. You

Re: PS1 command! ?

2003-02-12 Thread bastill
Quoting Matthew Hunt [EMAIL PROTECTED]: On Thu, Feb 13, 2003 at 10:01:58AM +1030, [EMAIL PROTECTED] wrote: *) PS1=$(PS1)S ;; Yet on login I get this error message: bash: PS1: command not found $(foo) is the same as `foo`. It runs the command foo and uses its output. So