:
: Starting sm1 with checking .sm1rc in the home directory.
: A sample startup file is Sm1rc in this directory.

: Where is your sm1?
SM1BINARY=../Kan/sm1
LOAD_SM1_PATH=$HOME/lib/sm1/
export LOAD_SM1_PATH

if [ -f $HOME/.sm1rc ] 
then
   $SM1BINARY -f $HOME/.sm1rc
elif  [ -f Sm1rc ]
then
   $SM1BINARY -f Sm1rc
else
   $SM1BINARY 
fi
   
