Changeset 53

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 
  • home/.profile

    r41 r53  
    55# Edit a blog entry file of name YYYYMMDD.txt 
    66alias log="vi `date +%Y%m%d`.txt" 
     7 
     8alias man="LC_ALL=C man" 
    79 
    810export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig 
     
    2426 
    2527export PATH=/usr/local/bin:$PATH 
     28 
     29# set PATH so it includes user's private bin if it exists 
     30if [ -d ~/bin ] ; then 
     31    PATH=~/bin:"${PATH}" 
     32fi 
     33 
     34# do the same with MANPATH 
     35if [ -d ~/man ]; then 
     36    MANPATH=~/man${MANPATH:-:} 
     37    export MANPATH 
     38fi