xref: /titanic_41/usr/src/cmd/nsadmin/bashrc.sh (revision b494511a9cf72b1fc4eb13a0e593f55c624ab829)
1#
2# Define default prompt to <username>@<hostname>:<path><"($|#) ">
3# and print '#' for user "root" and '$' for normal users.
4#
5PS1='${LOGNAME}@$(/usr/bin/hostname):$(
6    [[ "${LOGNAME}" == "root" ]] && printf "%s" "${PWD/${HOME}/~}# " ||
7    printf "%s" "${PWD/${HOME}/~}\$ ")'
8