#!/bin/csh -f

#--------- view xlsfonts with more
#   usage: xlsfontsmo

set tmpfile = "/tmp/xlsfontsList"

xlsfonts > $tmpfile
xterm -fn 7x13bold -g 80x70 -e /bin/more $tmpfile
sleep 1
rm -f $tmpfile

