home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / cpm / txtutl / findlq11.lbr / FQHELP.INC < prev    next >
Text File  |  1987-10-23  |  1KB  |  23 lines

  1. procedure Help;
  2. begin
  3. write('            10/15/87 Joe Fremer');
  4. writeln('     [GEnie mail J.FREMER]');
  5. writeln('A program to type/find ASCII or squeezed files in or out of a library.');
  6. writeln('Syntax:      fq [du:]fname[.ftype] [string to find] [output device]');
  7. writeln('    Command line parameter examples:');
  8. writeln('B7>fq A13:geniecpm.lbr .asm f');
  9. writeln('       /                 |    \  ');
  10. writeln('library or file        string   output to be directed');
  11. writeln('    name               to find    to a file');
  12. writeln;
  13. writeln('B7>fq A13:geniecpm .asm p  [same as above, output to LST: device]');
  14. writeln('B7>fq a13:geniecpm/upd.nqv .asm p  [same, but only search member UPD.NQV]');
  15. writeln('B7>FQ 4:STUBTOE.PQS PROCEDURE  [search non-library file for string "procedure"]');
  16. writeln('B7>fq A:tutorial   [interactive mode, library file named TUTORIAL.LBR in A7:]');
  17. writeln('B7>fq A:tutorial.  [interactive mode, non-library file named TUTORIAL]');
  18. writeln('NOTE: invoking the program with command line parameters causes the program ');
  19. writeln('    to assume you want to search all members of the library.  Including a');
  20. writeln('    string-to-find parameter automatically ignores case.');
  21. halt;
  22. end;
  23.