home *** CD-ROM | disk | FTP | other *** search
/ synchro.net / synchro.net.tar / synchro.net / modem.madness / SMMNETML / BOINK2.ZIP / BOINK.DOC next >
Encoding:
Text File  |  1993-03-23  |  1.5 KB  |  36 lines

  1. BOINK/UNBOINK Instructions
  2.  
  3. The BOINK program has two functions:
  4.  
  5. 1)  First, it takes a binary file and converts it to ASCII so that it can be
  6.     sent by EMAIL.  It has its own internal protocol checks to guarantee
  7.     that the file is received correctly.  Once the program has been sent to
  8.     a remote user, that user need only run the UNBOINK program to return the
  9.     data back to its original binary form.  A good application of this utility
  10.     would be to ZIP or ARC down a program or data file, BOINK it, and then
  11.     send it by EMAIL to another user.  To use this feature:
  12.  
  13.     BOINK <fname>
  14.  
  15.     Where <fname> is the name of a binary file you wish to "ASCII-fy".
  16.  
  17.     This will create a file with a .ASC extension which is suitable for
  18.     net transmission.  To "un-ASCII-fy" the file on the other end, type:
  19.  
  20.     UNBOINK <fname>
  21.  
  22.  
  23. 2)  The second thing it does is to split an ASCII file into subfiles based
  24.     on a maximum byte-count or a line-count.  This can be used in cases
  25.     where there is a maximum number of lines or bytes allowed in a single
  26.     EMAIL message (as is the case on most of the nets).  To use this
  27.     feature:
  28.  
  29.     BOINK  <fname> -Bxxxx -Lxxxx
  30.  
  31.   where <fname> is the name of the ASCII file you wish to split
  32.         type -Bxxxx if you want to split into subfiles no larger than xxxx bytes
  33.              -Lxxxx if you want to split into subfiles no larger than xxxx lines
  34.  
  35.   The file <fname> will get split into N subfiles named fname.001,...,fname.00N
  36.