home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / texts / txtfiles_misc / big2smal.dox < prev    next >
Text File  |  1987-12-12  |  2KB  |  48 lines

  1.  
  2. *********************************************************
  3. BIG2SMAL PROGRAM NOTES
  4. ----------------------
  5.  
  6. Consider the following situations:
  7.  
  8.      -  Downloading a lengthy message thread
  9.         and finding out that the resulting
  10.         file is too long to edit with your
  11.         favorite text processor.
  12.  
  13.      -  Receiving an ASCII file in the mail
  14.         of a size greater than 200K from a
  15.         vendor.
  16.  
  17.      -  A LAN print server that cannot process
  18.         files greater than 64K.
  19.  
  20. Dealing with this through a number of different
  21. techniques, I finally wrote BIG2SMAL.COM.  The
  22. concept is simple:  using brute force, just "whack"
  23. the file into a number of smaller files of a size
  24. less than or equal to 32K (of course, leaving the
  25. original file undisturbed).
  26.  
  27. BIG2SMAL uses a extension naming scheme, for example:
  28.  
  29.         CHP21-25.TXT  (209657 bytes long)
  30.  
  31.         will cause the following to happen
  32.  
  33.         BIG2SMAL:  Creating chp21-25.0 of length 32000
  34.         BIG2SMAL:  Creating chp21-25.1 of length 32000
  35.         BIG2SMAL:  Creating chp21-25.2 of length 32000
  36.         BIG2SMAL:  Creating chp21-25.3 of length 32000
  37.         BIG2SMAL:  Creating chp21-25.4 of length 32000
  38.         BIG2SMAL:  Creating chp21-25.5 of length 32000
  39.         BIG2SMAL:  Creating chp21-25.6 of length 17657
  40.  
  41. Note that after browsing and editing these files, they can
  42. be recombined by using the copy file1 + file2 command.
  43.  
  44. To get things started, a complete file specification must
  45. be provided in the command tail.  Also type BIG2SMAL for
  46. a summary of the command line interface.
  47. ***************************************************************************
  48.