Changeset 53 for home/.bash_profile

Show
Ignore:
Timestamp:
04/28/05 11:45:33 (4 years ago)
Author:
conrad
Message:

move PATH etc, defs from .bash_profile to .profile, and alias man to
always use LC_ALL=C

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • home/.bash_profile

    r22 r53  
    1010    . ~/.bashrc 
    1111fi 
    12  
    13 # the rest of this file is commented out. 
    14  
    15 # set PATH so it includes user's private bin if it exists 
    16 if [ -d ~/bin ] ; then 
    17     PATH=~/bin:"${PATH}" 
    18 fi 
    19  
    20 # do the same with MANPATH 
    21 if [ -d ~/man ]; then 
    22     MANPATH=~/man${MANPATH:-:} 
    23     export MANPATH 
    24 fi