> On Friday 03 October 2003 21:31, Tom Hosiawa wrote:
> > What I'm still wondering is why my change to PATH isn't taking affect?
>
> Could you post your ~/.bash_profile and ~/.bashrc ? It's difficult to say
> something without seeing it.
>
>
> Cheers,
> Renat
.bash_profile:
===============
# /etc/skel/.bash_profile:
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/skel/.bash_profile,v
1.10 2002/11/18 19:39:22 azarah Exp $
#This file is sourced by bash when you log in interactively.
[ -f ~/.bashrc ] && . ~/.bashrc
# User specific environment and startup programs
export HISTSIZE=100000
export EDITOR=vim
export
PATH=$PATH:/opt/intel/compiler70/ia32/bin:$HOME/OpenOffice.org1.1.0:$HOME/local/bin
export
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/compiler70/ia32/lib:/usr/local/lib
export MANPATH=$MANPATH:/opt/intel/compiler70/man
unset USERNAME
.bashrc:
=========
# /etc/skel/.bashrc:
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/skel/.bashrc,v 1.8
2003/02/28 15:45:35 azarah Exp $
# This file is sourced by all *interactive* bash shells on startup.
This
# file *should generate no output* or it will break the scp and rcp
commands.
[ -f /etc/profile ] && . /etc/profile
# Change the window title of X terminals
case $TERM in
xterm*|rxvt|Eterm|eterm)
PROMPT_COMMAND='echo -ne
"\033]0;[EMAIL PROTECTED]:${PWD/$HOME/~}\007"'
;;
screen)
PROMPT_COMMAND='echo -ne
"[EMAIL PROTECTED]:${PWD/$HOME/~}\033\\"'
;;
esac
eval `dircolors -b /etc/DIR_COLORS`
alias ls="ls --color"
alias rm='rm -i'
alias mv='mv -i'
alias cp='cp -i'
alias find='find 2> /dev/null'
alias lndir='lndir -silent -ignorelinks'
alias df='df -h'
alias psn4up='psnup -d -n 4'
alias psn2up='psnup -d -n 2'
umask 0077
Tom
--
[EMAIL PROTECTED] mailing list