#!/bin/sh

TELEGRAM=/usr/local/bin/tel

echo -n "Enter a user name to send a telegram to, or just press ENTER to exit: "

read NAME
if [ X$NAME = "X" ]; then
	exit
else
	exec $TELEGRAM $NAME
fi
