xref: /titanic_54/usr/src/cmd/nsadmin/bashrc.sh (revision 25c28e83beb90e7c80452a7c818c5e6f73a07dc8)
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