From owner-freebsd-questions Wed Nov 19 06:41:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA19655 for questions-outgoing; Wed, 19 Nov 1997 06:41:23 -0800 (PST) (envelope-from owner-freebsd-questions) Received: from tick.ssec.wisc.edu (tick.ssec.wisc.edu [144.92.108.121]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA19636 for ; Wed, 19 Nov 1997 06:41:11 -0800 (PST) (envelope-from dglo@tick.ssec.wisc.edu) Received: from tick.ssec.wisc.edu (localhost [127.0.0.1]) by tick.ssec.wisc.edu (8.8.7/8.8.7) with ESMTP id IAA17530; Wed, 19 Nov 1997 08:40:45 -0600 (CST) From: Dave Glowacki Message-Id: <199711191440.IAA17530@tick.ssec.wisc.edu> X-Mailer: exmh version 2.0zeta 7/24/97 To: "Lefty G." cc: "Jonathan E. Lyons" , questions@freebsd.org Subject: Re: Keeping mutliple machine and telnets straight.... In-reply-to: Your message of "Tue, 18 Nov 1997 21:16:29 EST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 19 Nov 1997 08:40:40 -0600 Sender: owner-freebsd-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Ok, it at depends what your PS1 variable is set to.. In bash type in > "set|more" and take note of the PS1 variable.. > > Then try > > export PS1='$HOSTNAME>' > > or better yet > > export PS1='$USERNAME@$HOSTNAME>' Or more bash-ily: export PS1='\u@\h% ' You can even do: export PS1='\d \t (\s \v) \u@\h:\w % ' To get a prompt like: Wed Nov 19 14:33:10 (bash 2.00) dglo@sweetpea:/tmp % (I think those are all the special characters...)