# !/bin/bash

#echo ---0: $0 ---1: $1 ---2: $2

if test "$1" != "" ; then
	if test "$0" != "-bash" ; then
		echo 
   		echo ERROR:  Usage is \". ldrive /dev/...\"  --- note the leading point and space !
		echo
	else
		if test "$1" ; then
			export LDRIVE=$1 ;
		fi
		echo
		echo  LTOOLS Linux default drive is $LDRIVE
		echo
	fi
else
	echo
	echo  LTOOLS Linux default drive is $LDRIVE
	echo
fi