home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / dirutl / tk_ls.arc / TK_LS.DOC < prev   
Text File  |  1989-01-14  |  2KB  |  45 lines

  1.  
  2. From: tim@csvax.caltech.edu (Timothy L. Kay)
  3. Re:   TK_LS.ARC - Timonthy Kay's "ls" for MS-DOS w/source v1.0
  4.  
  5. This is my version of ls.  It combines some of the features of Unix ls
  6. with some of my ideas of what Unix find should be able do.
  7.  
  8. Copyright 1989 Timothy L. Kay -- non-commercial use permitted
  9.  
  10. Please feel free to use this program, but only for non-commercial use.
  11. I am interested in receiving suggestions as well as modified source
  12. code.  I will try to keep an up-to-date version of the code available
  13. to all interested users.
  14.  
  15. If you type "ls -?" you will see the following.
  16.  
  17.  Usage: ls [-c] [?] [--] [-?] [-1FRabltv] [-f[abis[#]]] [file ...]
  18.     where
  19.       -,? print this message      c print copyright message
  20.       1   print files in single column with path prepended
  21.       F   enable inverse video for directories (or SET TERM=ansi)
  22.       R   recursively list contents of subdirectories
  23.       a   list all (including hidden and system) files
  24.       b#  print files in single column preceded with %i, i=1..#
  25.       f   find files that match particular criteria
  26.           a#  find files that contain > #% ASCII text (default 90%)
  27.           b   find files with extension .bak
  28.           i   find files with archive bit on
  29.           s#  find files smaller than # bytes (default 10000 bytes)
  30.       l   long format includes file date, time, size, attributes
  31.       t   list files in time order rather than alphabetic
  32.       v   verbose details of find decisions
  33.  
  34.    examples
  35.       ls                list files in current directory
  36.       ls -Rfas1000 /    lists all ASCII files smaller than 1000 bytes
  37.       ls -vRfas1000 /   same but explains why some files do not qualify
  38.       ls -Rfas / | zoo aI /backup   backs up all ASCII files of reasonable size
  39.       ls -b2 *.c > temp.bat ; temp cc -DMSDOS   compile all .c files
  40.  
  41. Timothy L. Kay
  42. Caltech, 256-80
  43. Pasadena, CA  91125
  44. tim@csvax.caltech.edu
  45.