Re: Change Bash-3.00# Prompt???

2004-12-20 Thread David Landgren
Adam wrote: I installed bash shell and now my prompt says bash-3.00# How do I change the text before the #? I'd like it to say bash# instead of bash-3.00#. Edit .bashrc or .bash_profile. Run 'man bash' and look at the FILES section. David ___ [EMAIL

Re: Change Bash-3.00# Prompt???

2004-12-20 Thread Alexandr
On Sun, Dec 19, 2004 at 08:38:09PM -0600, Adam wrote: I installed bash shell and now my prompt says bash-3.00# How do I change the text before the #? I'd like it to say bash# instead of bash-3.00#. Adam, you need to change your .profile file. Variable PS1 has beatifull discribe in man bash

Change Bash-3.00 Prompt

2004-12-19 Thread Adam
I installed bash shell and now my prompt says bash-3.00# How do I change the text before the #? I'd like it to say bash# instead of bash-3.00#. Thanks ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To

Re: Change Bash-3.00 Prompt

2004-12-19 Thread Greg 'groggy' Lehey
On Sunday, 19 December 2004 at 21:04:35 -0600, Adam wrote: I installed bash shell and now my prompt says bash-3.00# How do I change the text before the #? I'd like it to say bash# instead of bash-3.00#. export PS1=bash# Greg -- When replying to this message, please copy the original

Re: Change Bash-3.00 Prompt

2004-12-19 Thread darren kirby
quoth the Adam: I installed bash shell and now my prompt says bash-3.00# How do I change the text before the #? I'd like it to say bash# instead of bash-3.00#. Thanks Bash prompt is created from the env variable PS1 If really all you want is bash# then try: $ export PS1=bash$ to make it

Change Bash-3.00# Prompt???

2004-12-19 Thread Adam
I installed bash shell and now my prompt says bash-3.00# How do I change the text before the #? I'd like it to say bash# instead of bash-3.00#. Thanks ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To

Re: Change Bash-3.00 Prompt

2004-12-19 Thread Oliver Fuchs
On Sun, 19 Dec 2004, Adam wrote: I installed bash shell and now my prompt says bash-3.00# How do I change the text before the #? I'd like it to say bash# instead of bash-3.00#. Hi, I use this in my .bash_profile: PS1='(\[$(tput md)\]\t \w\[$(tput me)\]) $(echo $?) \$ ' export PATH PS1