Bash is now the default shell in Panther. You can change it to tcsh in NetInfo Manager.
Bash access a couple of user configurable files when it starts in interactive mode in the Terminal. One is most commonly named .bash_profile (can also be .profile or .login-- synonymous). The other is .bashrc.
There are different ways to use these. In my .bash_profile I have:
Code:
. ~/.bashrc
ENV=$HOME/.bashrc
export ENV
There is a space between . and ~ in the first line. This script sets the ENV variable and points at .bashrc. I then keep most aliases, prompt info, etc in .bashrc.
Fink adds a line to .bashrc-
Code:
source /sw/bin/init.sh
which calls a script that adds /sw/bin and /sw/sbin to your path. This is what you are missing.
Craig