home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / GLEN / FILEREV.ZIP / FILEREV.DOC next >
Text File  |  1990-11-24  |  4KB  |  103 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.                                FILE REVIEWER
  8.  
  9.                                 by Jim Percic
  10.  
  11.  
  12.      FILE REVIEWER was designed to assist in purging old files from a
  13.      directory in your hard drive.  FILE REVIEWER will list to the
  14.      screen a file or a series of files matching specifications you
  15.      give it.  When a file is displayed, you then can choose to delete
  16.      or keep the file.  FILE REVIEWER was designed to permit batch
  17.      operations and to combine the listing of the file with the
  18.      decision to delete or not delete.  As such the syntax is:
  19.  
  20.           FILEREV filespec [filespec] [filespec] . . . [/m]
  21.  
  22.      Up to eight separate file specifications (filespecs) can be given
  23.      and each filespec can include the "*" and "?" wildcards.  You
  24.      can, for example, enter the following command:
  25.  
  26.           FILEREV *.bak file.* filerev.doc
  27.  
  28.      The program will list in succession all files with the .bak
  29.      extension, then all files with the file name and any extension,
  30.      and then filerev.doc (this file).  This permits examination and
  31.      processing of a large number of files at one time.  If FILE
  32.      REVIEWER is entered with no arguments or with nine or more
  33.      arguments, the program exits with a help message.
  34.  
  35.      Once a file has been selected, the first 18 lines are displayed
  36.      on the screen.  Certain characters have been converted to spaces,
  37.      such as ^G (the bell character) and ^H (the backspace character),
  38.      to avoid noise and screen disruptions.  In addition, FILE
  39.      REVIEWER ignores ^Z (the End of File [EOF] marker) completely.
  40.      This permits FILE REVIEWER to examine word processing files and
  41.      executable files.  Word processing programs such as WordStar
  42.      2000+ and MultiMate place formatting information in a header that
  43.      is separated from the main text by an EOF, which is why using the
  44.      TYPE command does not display the entire file.
  45.  
  46.      The program should adjust for monocrome monitors.  If not, try using
  47.      a "/m" at the end of the command line.  In this case, you can only
  48.      have seven filespecs.  The "/m" must be the last argument.
  49.  
  50.      When the first eighteen lines have been displayed, the following
  51.      commands can be given.  FILE REVIEWER ignores all other
  52.      keystrokes.  The commands are:
  53.  
  54.      D - Pressing <D> will delete the displayed file.  Before the file
  55.           is deleted, FILE REVIEWER will ask for confirmation. Press
  56.           <Y> to delete the file.  Any other key will stop deletion.
  57.           After a file is deleted, the next matching file will be
  58.           displayed.
  59.  
  60.  
  61.  
  62.  
  63.      Page 2                   FILE REVIEWER              Documentation
  64.  
  65.  
  66.  
  67.  
  68.      K - Pressing <K> will keep (not delete) the displayed file and
  69.           display the next matching file.
  70.      Spacebar - Pressing the spacebar will scroll the next 18 lines of
  71.           the file to the screen.  Upon reaching the end of the file,
  72.           FILE REVIEWER displays a message saying "* END OF FILE *".
  73.           The next press of the spacebar will scroll the file again
  74.           from its beginning.
  75.  
  76.      R - Pressing <R> will start the display of the selected file from
  77.           its beginning.
  78.  
  79.      ? - Pressing <?> will display a help screen.  Pressing any key
  80.           will return you to the file display.
  81.  
  82.      Esc - Pressing <Esc> will exit FILE REVIEWER completely from that
  83.           point.
  84.  
  85.      FILE REVIEWER will notify you with an error message if it is
  86.      unable to locate a file matching the specification you give or if
  87.      it is unable to delete a file.
  88.  
  89.      I have placed FILE REVIEWER in the public domain.  Try it.  If you
  90.      like it, use it.  If not, don't use it.  In either event, pass it on
  91.      to others to enjoy.
  92.  
  93.      I wrote FILE REVIEWER to meet a specific need.  Where I work, the
  94.      staff had a lot of word processing files cluttering a 20 mb hard
  95.      disk.  I tried to find a program that would allow someone to view a
  96.      file and decide while viewing it to delete it in one step.  The only
  97.      programs I found worked with ASCII files and stopped processing at 
  98.      the first Ctrl-Z they found.  Some word processors use the Ctrl-Z
  99.      to separate the header with the formatting information from the
  100.      actual text.  For these files, the programs don't work.
  101.  
  102.      FILE REVIEWER was developed using PowerC by MIX Software.
  103.