xref: /titanic_53/usr/src/cmd/nsadmin/bashrc.sh (revision 148c5f43199ca0b43fc8e3b643aab11cd66ea327)
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