From a6caf576417a6655b3cb1caf0b1ccdc9cdf1e9fd Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Wed, 2 Jan 2013 11:48:45 -0600 Subject: [PATCH] .profile: Update PS1 format to mirror .bashrc --- .profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.profile b/.profile index 4c51dae..8031af9 100755 --- a/.profile +++ b/.profile @@ -6,7 +6,8 @@ PATH=/epic/bin:/bin:/home/bin:/usr/bin:/bin:/opt/std/bin:/usr/local/bin:/usr/sbi export PATH set -a -PS1='$LOGNAME'@$(uname -n):'$PWD> ' +HOST=$(hostname) +PS1='[$LOGNAME@$HOST:$PWD]$ ' set +a PAGER=more -- 2.45.2