Moin,
man bash ;)
Ich glaube dein problem kommt von dem login/non-login shell hick hack.
Nur eine login-shell liest /etc/profile, ~/.bash_profile, ~/.bash_login
und ~/.profile ein. Ansonsten wird nur ~/.bashrc geparst.
Du koenntest dir in deine ~/.bash_profile z.B. folgendes eintragen:
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
Dann wuerde er bei jeder login shell auch die config file von der
non-login shell "sourcen", falls diese datei existiert. Du kannst dann
alles, was nicht login-spezifisch ist in die .bashrc schreiben. Natuerlich
kannst du beliebige andere dateie auch "sourcen". Damit sollte es dir
moeglich sein ueberall deine aliase und variablen zu haben.
Einige terminalemulationen geben dir eine login-shell und andere eine
interaktive non-login shell ...
Viel spass,
Lars
-- Lars Baumgaertner <lcb(at)gmx.net> >> PGP public key on request << To Unsubscribe: send mail to majordomo(at)de.FreeBSD.org with "unsubscribe de-bsd-questions" in the body of the messageReceived on Tue 12 Dec 2000 - 23:21:15 CET