svn commit: r342576 - head/share/skel

Edward Tomasz Napierala trasz at FreeBSD.org
Fri Dec 28 17:50:41 UTC 2018


Author: trasz
Date: Fri Dec 28 17:50:40 2018
New Revision: 342576
URL: https://svnweb.freebsd.org/changeset/base/342576

Log:
  Simplify the way we set the default sh(1) PS1.  No functional changes.
  
  Reviewed by:	jilles
  MFC after:	2 weeks
  Sponsored by:	DARPA, AFRL
  Differential Revision:	https://reviews.freebsd.org/D18662

Modified:
  head/share/skel/dot.shrc

Modified: head/share/skel/dot.shrc
==============================================================================
--- head/share/skel/dot.shrc	Fri Dec 28 17:00:12 2018	(r342575)
+++ head/share/skel/dot.shrc	Fri Dec 28 17:50:40 2018	(r342576)
@@ -33,11 +33,7 @@ alias g='egrep -i'
 
 
 # # set prompt: ``username at hostname$ '' 
-# PS1="`whoami`@`hostname | sed 's/\..*//'`"
-# case `id -u` in
-# 	0) PS1="${PS1}# ";;
-# 	*) PS1="${PS1}$ ";;
-# esac
+# PS1="`whoami`@\h\\$ "
 
 # search path for cd(1)
 # CDPATH=:$HOME


More information about the svn-src-head mailing list