50 lines
1.7 KiB
Plaintext
50 lines
1.7 KiB
Plaintext
#
|
|
# Test for font schemes
|
|
#
|
|
|
|
if test $# = 0
|
|
then
|
|
echo "usage: fonttest size"
|
|
echo "size can be 10 12 14 17 or 20"
|
|
echo "string all tests all the sizes"
|
|
elif test $1 = "all"
|
|
then
|
|
echo "Testing 10, 12, 14, 17, and 20 pixel sizes"
|
|
# 10 pixels
|
|
cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
|
|
chmod +w ~/Helpview
|
|
cat help010.fns >> ~/Helpview
|
|
/x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
|
|
sleep 5
|
|
# 12 pixels
|
|
cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
|
|
chmod +w ~/Helpview
|
|
cat help012.fns >> ~/Helpview
|
|
/x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
|
|
sleep 5
|
|
# 14 pixels
|
|
cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
|
|
chmod +w ~/Helpview
|
|
cat help014.fns >> ~/Helpview
|
|
/x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
|
|
sleep 5
|
|
# 17 pixels
|
|
cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
|
|
chmod +w ~/Helpview
|
|
cat help017.fns >> ~/Helpview
|
|
/x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
|
|
sleep 5
|
|
# 20 pixels
|
|
cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
|
|
chmod +w ~/Helpview
|
|
cat help020.fns >> ~/Helpview
|
|
/x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
|
|
|
|
else
|
|
cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
|
|
chmod +w ~/Helpview
|
|
cat help0$1.fns >> ~/Helpview
|
|
/x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
|
|
fi
|
|
|