.name
BTNTape
.type
Disk Tool
.aminet-dir
disk/bakup
.short
A 'Better-Than-Nothing' scsi tape driver
.description
The "Better Than Nothing" SCSI tape device handler.  It provides flat-file
access to a SCSI tape drive from application programs using simple calls to
DOS or C library I/O functions.  It can also be used with the Amiga TAR
utility for disk backups.  It uses your existing SCSI adapter's device
driver for access to the bus.  This version fixes a number of bugs and
includes several new features including file number tracking and append-only
and read-only safety modes.
.version
3.0
.author
Robert Rethemeyer
.reference
AmigaLibDisk558:BTNTape/
2.1
AmigaLibDisk471:BTNTape/
2.0
AmigaLibDisk392:BTNTape/
1.0
.distribution
Freeware
.address
979-4 Belmont Terrace
Sunnyvale, CA  94086
USA
.email
drBob@cup.portal.com
.source
Includes complete C-source and extensive documentation
.docs
readme.first
changes.doc
doc/drives.doc
doc/features.doc
doc/hardware.doc
doc/install.doc
doc/messages.doc
doc/tapemon.doc
doc/usage.doc
.described-by
Fred Fish (fnf@fishpond.cygnus.com)
.submittal
Submitted on disk directly by the author.
.execute
set choice `RequestChoice "BTNTape" "Please select an option" "ReadMe" "Changes" "View Files" "Cancel"`
if $choice EQ "0"
  quit 5
endif
if $choice EQ "1"
  MetaTool ReadMe.first TEXT
endif
if $choice EQ "2"
  MetaTool Changes.doc TEXT
endif
if $choice EQ "3"
  set filechoice `RequestFile TITLE "Select Text File" REJECTPATTERN "(tapemon|#?.info|btn-handler)"`
  set dirchoice `pathname $filechoice`
  set filechoice `basename $filechoice`
  failat 21
  cd $dirchoice
  MetaTool $filechoice TEXT
endif
