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

  1. .name
  2. BTNTape
  3. .type
  4. Disk Tool
  5. .aminet-dir
  6. disk/bakup
  7. .short
  8. A 'Better-Than-Nothing' scsi tape driver
  9. .description
  10. The "Better Than Nothing" SCSI tape device handler.  It provides flat-file
  11. access to a SCSI tape drive from application programs using simple calls to
  12. DOS or C library I/O functions.  It can also be used with the Amiga TAR
  13. utility for disk backups.  It uses your existing SCSI adapter's device
  14. driver for access to the bus.  This version fixes a number of bugs and
  15. includes several new features including file number tracking and append-only
  16. and read-only safety modes.
  17. .version
  18. 3.0
  19. .author
  20. Robert Rethemeyer
  21. .reference
  22. AmigaLibDisk558:BTNTape/
  23. 2.1
  24. AmigaLibDisk471:BTNTape/
  25. 2.0
  26. AmigaLibDisk392:BTNTape/
  27. 1.0
  28. .distribution
  29. Freeware
  30. .address
  31. 979-4 Belmont Terrace
  32. Sunnyvale, CA  94086
  33. USA
  34. .email
  35. drBob@cup.portal.com
  36. .source
  37. Includes complete C-source and extensive documentation
  38. .docs
  39. readme.first
  40. changes.doc
  41. doc/drives.doc
  42. doc/features.doc
  43. doc/hardware.doc
  44. doc/install.doc
  45. doc/messages.doc
  46. doc/tapemon.doc
  47. doc/usage.doc
  48. .described-by
  49. Fred Fish (fnf@fishpond.cygnus.com)
  50. .submittal
  51. Submitted on disk directly by the author.
  52. .execute
  53. set choice `RequestChoice "BTNTape" "Please select an option" "ReadMe" "Changes" "View Files" "Cancel"`
  54. if $choice EQ "0"
  55.   quit 5
  56. endif
  57. if $choice EQ "1"
  58.   MetaTool ReadMe.first TEXT
  59. endif
  60. if $choice EQ "2"
  61.   MetaTool Changes.doc TEXT
  62. endif
  63. if $choice EQ "3"
  64.   set filechoice `RequestFile TITLE "Select Text File" REJECTPATTERN "(tapemon|#?.info|btn-handler)"`
  65.   set dirchoice `pathname $filechoice`
  66.   set filechoice `basename $filechoice`
  67.   failat 21
  68.   cd $dirchoice
  69.   MetaTool $filechoice TEXT
  70. endif
  71.