#!/bin/sh
#
# file to be used as login wrapper for LIME
#

# some security holes can be used through use of IFS
# setting to NULL closes many holes :-)
IFS=""

# generic path
PATH=/bin:/usr/bin:/usr/local/bin:/opt/local/bin
export PATH

# Terminal Emulation (Quick fix for now)
TERM=vt100
export TERM

# path to LIME
LIME=/opt/src/lime
export LIME

# setup defaults (like ctrl-h as backspace)
stty erase "^H" kill "^U" intr "^C" eof "^D" 
stty hupcl ixon ixoff 

# Visual editor (pico)
VISUAL="/usr/bin/pico -t"
export VISUAL

cd $LIME
./lime -mmain.mnu

