#!/bin/sh
# Test routine to see which keyboard LEDs are affected by which number(s).
# To turn them off, give this script a '-' as an arg.
#
for i in `count 1 32`
do	echo LED $i
	xset ${1}led $i
	sleep 2
done
