Initial import of the CDE 2.1.30 sources from the Open Group.
This commit is contained in:
49
cde/programs/dthelp/fontschemes/fonttest
Normal file
49
cde/programs/dthelp/fontschemes/fonttest
Normal file
@@ -0,0 +1,49 @@
|
||||
#
|
||||
# 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
|
||||
|
||||
Reference in New Issue
Block a user