#!/bin/sh
dir=/tmp/xlogin$XSESSION
file=question.ez
DEARLUCY=${DEARLUCY-"Dear lucy,"}
if [ ! -d $dir ]; then
	mkdir $dir
fi

cd $dir

if [ ! -w $file ]; then
	rm -f $file
	echo $DEARLUCY > $file
	ez +2 $file
else
	ez $file
fi

