fonttest 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # Test for font schemes
  3. #
  4. if test $# = 0
  5. then
  6. echo "usage: fonttest size"
  7. echo "size can be 10 12 14 17 or 20"
  8. echo "string all tests all the sizes"
  9. elif test $1 = "all"
  10. then
  11. echo "Testing 10, 12, 14, 17, and 20 pixel sizes"
  12. # 10 pixels
  13. cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
  14. chmod +w ~/Helpview
  15. cat help010.fns >> ~/Helpview
  16. /x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
  17. sleep 5
  18. # 12 pixels
  19. cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
  20. chmod +w ~/Helpview
  21. cat help012.fns >> ~/Helpview
  22. /x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
  23. sleep 5
  24. # 14 pixels
  25. cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
  26. chmod +w ~/Helpview
  27. cat help014.fns >> ~/Helpview
  28. /x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
  29. sleep 5
  30. # 17 pixels
  31. cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
  32. chmod +w ~/Helpview
  33. cat help017.fns >> ~/Helpview
  34. /x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
  35. sleep 5
  36. # 20 pixels
  37. cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
  38. chmod +w ~/Helpview
  39. cat help020.fns >> ~/Helpview
  40. /x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
  41. else
  42. cp /x/r5s300/hp/rivers/cachecreek/helpview/Helpview ~/Helpview
  43. chmod +w ~/Helpview
  44. cat help0$1.fns >> ~/Helpview
  45. /x/r5s300/hp/rivers/cachecreek/helpview/helpview -helpVolume /x/r5src/hp/rivers/cachecreek/volumes/developers/developers.hv &
  46. fi