1 #
2 # Uncommenting PATH below will place /usr/gnu/bin at front,
3 # adds /usr/sbin and /sbin to the end.
4 #
5 # export PATH=/usr/gnu/bin:/usr/bin:/usr/sbin:/sbin
6 #
7 # Define default prompt to <username>@<hostname>:<path><"($|#) ">
8 # and print '#' for user "root" and '$' for normal users.
9 #
10 # override default prompt for bash
11 # case "$0" in
12 # -bash)
13 # export PS1="\u@\h:\w\\$ "
14 # esac
|
1 #
2 # Want XPG6 commands. See standards(5).
3 # Use less(1) as the default pager for the man(1) command.
4 #
5 export PATH=/usr/xpg6/bin:/usr/xpg4/bin:/usr/bin:/usr/sbin:/sbin
6 export PAGER="/usr/bin/less -ins"
7
8 # Uncommenting PATH below will place /usr/gnu/bin at front,
9 # adds /usr/sbin and /sbin to the end.
10 #
11 # export PATH=/usr/gnu/bin:/usr/bin:/usr/sbin:/sbin
12 #
13 # Define default prompt to <username>@<hostname>:<path><"($|#) ">
14 # and print '#' for user "root" and '$' for normal users.
15 #
16 # override default prompt for bash
17 # case "$0" in
18 # -bash)
19 # export PS1="\u@\h:\w\\$ "
20 # esac
|