home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / misc / zero / product-info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-10-23  |  1.4 KB  |  64 lines

  1. # This file contains product information that can be used by
  2. # KingFisher 2.0 and other similar tools.
  3.  
  4. .name
  5. Zero
  6. .type
  7. Handler
  8. .short
  9. DOS-handler like /dev/zero in Unix
  10. .description
  11. An AmigaDOS handler much like the /dev/zero device in Unix.
  12. It provides streams of 0-bytes, which can be unlimited or set to an
  13. arbitrary limit.  There are two ways to use the handler:
  14.  
  15.     zero:           unlimited stream of 0-bytes
  16.     zero:<number>   a stream of <number> 0-bytes
  17.  
  18. Examples:
  19.  
  20.     copy zero: to somefile      will quickly fill your harddisk
  21.     copy zero:2000 to somefile  generates a file of 2000 0-bytes
  22.     copy zero:0 to somefile     generates a file of size 0
  23.     copy zero:foo to somefile   results in an error
  24. .version
  25. 1.1
  26. .date
  27. 1995.01.07
  28. .author
  29. Ingo Wilken
  30. .requirements
  31. Requires AmigaOS 2.04 (V37.175) or higher
  32. .distribution
  33. Copyrighted but Freely Redistributable
  34. .address
  35. Bloherfelder Str. 72
  36. 26129 Oldenburg
  37. Germany
  38. .email
  39. Ingo.Wilken@informatik.uni-oldenburg.de
  40. .source
  41. Includes source in C
  42. .docs
  43. Zero.doc
  44. .described-by
  45. Dan Fish (daf@starfish.amigalib.com)
  46. .submittal
  47. Downloaded via ftp from wuarchive.wustl.edu.
  48. .aminet-dir
  49. util/misc
  50. .execute
  51. set choice `RequestChoice "Zero" "Please select an option" "View Readme" "View Doc" "Cancel"`
  52.  
  53. if $choice EQ "0"
  54.   quit 5
  55. endif
  56.  
  57. if $choice EQ "1"
  58.   MetaTool zero.readme TEXT
  59. endif
  60.  
  61. if $choice EQ "2"
  62.   MetaTool zero.doc TEXT
  63. endif
  64.