#!/bin/sh
# This program sets the title of an xterm window to the command-line args.

if [ "$TERM" = "xterm" ];then
	echo "]2;$*\c"
else
	exit 2
fi

