home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / TOOLS.ZIP / READ.ME < prev    next >
Encoding:
Text File  |  1987-09-23  |  2.5 KB  |  66 lines

  1. Here are some utilitys, made by a UNIX addict, to imitate closely
  2. the corresponding UNIX commands.
  3. All of you know these commands, so I don't think manual pages
  4. are required.
  5.  
  6. Some brief explanation:
  7.  
  8. df:
  9.    Usage: df [drive:]
  10.     When called without arguments, it will display the space
  11.     used / free in Kbytes and in clusters, of all available drives
  12.     from C: on upwards.
  13.     With an drive identifier as argument, it will display the same
  14.     info for the given drive, followed by the default info.
  15.  
  16. du:
  17.    Usage: du -s [directory]
  18.     Du will give you the disk usage in Kbytes from the current or
  19.     given directory downwards. The -s option only gives a summary.
  20.  
  21. ls:
  22.    Usage: ls -Flrst [file [file ...]] (or directory)
  23.    Options: -F : Add '/' for subdirectorys, and * for executable files.
  24.             -l : Long listing, status and date/time info is displayed.
  25.             -r : Reverse the sort order.
  26.             -s : Also display the size in Kbytes before the filename.
  27.             -t : Sort by modify time instead of alphabetically
  28.  
  29. rm:
  30.    Usage: rm [-rf] file/directory [file...]
  31.    Allows multiple file arguments (not like 'del')
  32.    Options: -r : Recursive delete of all files and subdirs.
  33.             -f : Delete read-only files also.
  34.    Warning: rm -rf \ is FATAL!!
  35.  
  36. mv:
  37.    Usage: mv file file
  38.           mv file [file ..] directory
  39.    Allows full path names in both source and destination (on same drive).
  40.    This command actually moves links, not files.
  41.    Existing destination files will be overwritten!
  42.  
  43. ------------------------------------------------------------------------------
  44.  
  45. Compiling:
  46.    The sources supplied are for Microsoft C 4.0, I haven't tried other
  47.    compilers, so maybe some others will work too.
  48.    Also you need MASM to assemble the clsize.asm file.
  49.    The file 'all' is the makefile for Microsoft make. Just type 'make all'.
  50.  
  51. Status of the software:
  52.    These programs are freeware, please distribute freely, and without
  53.    additional costs, exept for disks or postage.
  54.    But please distribute the complete package only, including this notice.
  55.  
  56. Disclaimer:
  57.    I have used the software for quite a time now, and now harmful bugs
  58.    have appeared. But I don't take any responsibility for any harm
  59.    caused by the use (or misuse) of these programs.
  60.  
  61. All programs written by K.van Houten
  62.                         Delft University of Technology
  63.                         Delft / The Netherlands
  64.                         karel@dutesta.UUCP
  65.  
  66.