show me the PATH

erikv11

Registered
running 10.3.2

I ran a package installer and now my PATH is amiss. e.g. this from the Terminal:

Albatross2:~ erikv$ man ls
No manual entry for ls
here are the contents of /private/etc/profile, I think you'll ask for that:

# System-wide .profile for sh(1)

PATH="/bin:/sbin:/usr/bin:/usr/sbin"
export PATH

[ -r /etc/bashrc ] && source /etc/bashrc
#Added by staden pkg
export PATH=/usr/ebiotools/bin:$PATH

# Added by emboss pkg
export PLPLOT_LIB=/usr/ebiotools/share/EMBOSS
export DYLD_LIBRARY_PATH=/usr/ebiotools/lib:$DYLD_LIBRARY_PATH

# Added by qt pkg
QTDIR=/usr/ebiotools/qt
PATH=/usr/ebiotools/qt/bin:$PATH
MANPATH=/usr/ebiotools/qt/doc/man:$MANPATH
DYLD_LIBRARY_PATH=/usr/ebiotools/qt/lib:$DYLD_LIBRARY_PATH

export QTDIR PATH MANPATH DYLD_LIBRARY_PATH


#Added by staden pkg
export PATH=/usr/ebiotools/staden/macosx-bin:$PATH
export STADENROOT=/usr/ebiotools/staden
. $STADENROOT/staden.profile

is it obvious? any ideas?

at least the binaries I wanted are working! thanks for tolerating my naivete ...
 
The MANPATH is not set by default. Set it to /usr/share/man:/usr/X11R6/man to get access to the system man pages.
 
Back
Top