home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / arc / lino / product-info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-10-24  |  1.9 KB  |  75 lines

  1. .name
  2. LINO
  3. .type
  4. Compression
  5. .short
  6. LINO is a file to file packer
  7. .description
  8. LINO is a file to file packer, which compresses/expands files or
  9. directories.  It includes a 'XPK compression interface' (about XPK see
  10. lino.doc), to use compression software, which is written for this
  11. standard.
  12.  
  13. Data compression is a software technic to spare space on disk or tape.
  14. There are different algorithms to do this. From a simple
  15. Run-Length-Encoding which replaces a sequence of equal bytes with one
  16. of this bytes and the number of these bytes, as far as the Arithmetic
  17. Coding, where the probability of a byte within a file determines the
  18. code.
  19.  
  20. Applications for data compression are archiving files, backup storage,
  21. and harddisk compressing.  There are some very good freeware,
  22. shareware and commercial applications which have a XPK-interface
  23. implemented.  For example: the XPK-package with XFH (a harddisk
  24. compressor) on Fish 754, EPU (also a harddisk compressor) on Fish 858,
  25. ABackup (a backup utility) on Fish 838 (for some references see file
  26. lino.doc).
  27. .version
  28. 1.0
  29. .author
  30. Gerhard Tuenkler
  31. .distribution
  32. Copyrighted but Freely Redistributable
  33. .address
  34. Gerhard Tuenkler
  35. Th. Koerner Str. 40/3/11
  36. A-8010 Graz
  37. AUSTRIA
  38. EUROPE
  39. .docs
  40. ReadMe
  41. Install.ReadMe
  42. doc/Libs.doc
  43. doc/Lino.doc
  44. doc/LPatch.ReadMe
  45. doc/Statistics
  46. doc/Zeno.doc
  47. dok/Libs.dok
  48. dok/Lino.dok
  49. dok/LPatch.LiesMich
  50. dok/Statistik
  51. dok/Zeno.dok
  52. .described-by
  53. Richard Fish (rjf@amigalib.com)
  54. .submittal
  55. Submitted on disk directly by the author.
  56. .aminet-dir
  57. util/arc
  58. .execute
  59. set choice `RequestChoice "LINO" "Please select an option" "View Doc" "View Dok" "Cancel"`
  60. if $choice EQ "0"
  61.   quit 5
  62. endif
  63.  
  64. if $choice EQ "1"
  65.   set filechoice `RequestFile TITLE "Select Text File" PATTERN "~(#?.info)" DRAWER "doc/"`
  66.   MetaTool $filechoice TEXT
  67.   unset filechoice
  68. endif
  69.  
  70. if $choice EQ "2"
  71.   set filechoice `RequestFile TITLE "Select Text File" PATTERN "~(#?.info)" DRAWER "dok/"`
  72.   MetaTool $filechoice TEXT
  73.   unset filechoice
  74. endif
  75.