# # Simple profile places /usr/gnu/bin at front, # adds /usr/X11/bin, /usr/sbin and /sbin to the end. # # Use less(1) as the default pager for the man(1) command. # export PATH=/usr/gnu/bin:/usr/bin:/usr/sbin:/sbin export PAGER="/usr/bin/less -ins" # # Define default prompt to @:<"($|#) "> # and print '#' for user "root" and '$' for normal users. # PS1='${LOGNAME}@$(/usr/bin/hostname):$( [[ "${LOGNAME}" == "root" ]] && printf "%s" "${PWD/${HOME}/~}# " || printf "%s" "${PWD/${HOME}/~}\$ ")'