home *** CD-ROM | disk | FTP | other *** search
/ Big Blue Disk 22 / bbd22.zip / LL.TXT < prev    next >
Text File  |  1988-05-20  |  2KB  |  41 lines

  1. |D╔══════════════════╗════════════════════════════════════════════════════════════ 
  2. |D║ |5The Happy Hacker |D║════════════════════════════════════════════════════════════
  3. |D╚══════════════════╝════════════════════════════════════════════════════════════
  4.  
  5. ^C^1Longest Line
  6. ^Cby
  7. ^CJeffrey Rush
  8.  
  9. Purpose:
  10.  
  11.    This utility is useful for scanning a group of files to find those with long
  12. lines of text.  In particular, it is sometimes useful prior to printing out
  13. files, to see if any of them contain lines that are going to wrap on your
  14. printer.  This saves time if you care about the appearance of your listings.  It
  15. has also been used to catch program source files with lines longer than the
  16. editor can handle or display, and alert the user.
  17.  
  18.    To limit the output to only those files with unusually long lines, you can
  19. specify a threshold length, below which no output will be generated for that
  20. file.
  21.  
  22. Usage:  ll {-threshold} filespec1 [filespec2]...
  23.  
  24. Examples:
  25.     C>LL *.BAS *.ASM   <--- List the lengths of the longest lines in
  26.                             each of the files matched.
  27.     C>LL -80 *.BAS     <--- List any Basic programs with lines longer
  28.                             than 80 characters.
  29.  
  30.     C>LL *.DOC
  31.         DIRTOOLS.DOC...74 Characters.
  32.         STRUDOC.DOC ...72 Characters.
  33.         TEMPLATE.DOC...81 Characters.
  34.         TXTTOOLS.DOC...74 Characters.
  35.  
  36.    Note:  This program is not runnable from the BIG BLUE DISK menu.  Run it from
  37. DOS with the command line syntax shown above.
  38.  
  39. DISK FILES THIS PROGRAM USES:
  40. ^FLL.EXE
  41.