#!/bin/sh

# Echo the xterm control sequence which sets the font to the
# fontname given as the first argument.

if [ $# -ne 1 ]; then
	echo "Usage: $0 <fontname>" 1>&2
	exit 1
fi

echo -n ']50;'$1'' 
