21 lines
583 B
Plaintext
21 lines
583 B
Plaintext
|
|
||
|
test -z "$PROFILEREAD" && . /etc/profile || true
|
||
|
|
||
|
# Some applications read the EDITOR variable to determine your favourite text
|
||
|
# editor. So uncomment the line below and enter the editor of your choice :-)
|
||
|
export EDITOR=/usr/bin/vim
|
||
|
#export EDITOR=/usr/bin/mcedit
|
||
|
|
||
|
# For some news readers it makes sense to specify the NEWSSERVER variable here
|
||
|
#export NEWSSERVER=your.news.server
|
||
|
|
||
|
# Some people don't like fortune. If you uncomment the following lines,
|
||
|
# you will have a fortune each time you log in ;-)
|
||
|
|
||
|
if [ -x /usr/bin/fortune ] ; then
|
||
|
echo
|
||
|
/usr/bin/fortune
|
||
|
echo
|
||
|
fi
|
||
|
|