home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / MISC / PCUNIX.ZIP / READ.ME < prev    next >
Encoding:
Text File  |  1987-01-31  |  3.9 KB  |  105 lines

  1. From: Dwight Ernest KA2CNN
  2.       uucp: {ihnp4 | vax135}!timeinc!dwight
  3.  
  4. To: Public Domain Software and Unix/C Enthusiasts
  5.     (who use IBM PCs or compatibles)
  6.  
  7.  
  8. This is a READ.ME file to accompany PCUNIX.LBR/.LQR.
  9.  
  10. This library archive contains:
  11.     CHMOD    EXE         14720   7-15-84   8:17p
  12.     CHMOD    C            8744  10-30-84   8:03a
  13.     DIF      EXE         19328   4-02-85  12:55p
  14.     DIF      C           15311  10-30-84   8:02a
  15.     GREP     EXE         21262  11-23-84  11:09a
  16.     GREP     C           17080  10-30-84   8:02a
  17.     MV       EXE         16567  10-11-84   4:26p
  18.     MV       DOC          1358  10-11-84   4:33p
  19.     SSED     EXE         16128  11-23-84  11:04a
  20.     TAIL     EXE         11392   6-24-84  10:05p
  21.     WC       EXE         13184  11-23-84  11:04a
  22.     ...plus this READ.ME file.
  23.  
  24. All of these files are for the IBM PC under DOS 2.x (in some cases,
  25. also under DOS 1.x and/or DOS 3.x). All of them are, to the best of
  26. my knowledge, in the public domain. All of them emulate various Unix
  27. operating system capabilities. Those of us who use Unix frequently, or
  28. have been exposed to its tools, may miss these programs on our PCs.
  29. All of these programs were collected over a period of about 18 months
  30. from various sources, including Usenet net.sources category postings
  31. (via uucp), the Compuserve IBM PC SIG, and Compuserve VAX SIG, and
  32. various remote bulletin board systems and YAM-host systems.
  33.  
  34. All of these programs print a very brief synopsis of their argument
  35. requirements and capabilities when executed without arguments.
  36.  
  37. ----------------------------------------
  38. CHMOD
  39. -----    A program to change permission and other file attributes under
  40. PC-DOS:
  41.  
  42. chmod [-[r][h][s][a]] filename.ext [filename.ext...]
  43.  
  44. Use the '-' option to set file modes. Omit the '-' option for mode display.
  45. A dash by  itself (chmod - filename) sets normal mode.
  46.  
  47. Settable flags:
  48.   r = read only
  49.   h = hidden
  50.   s = system
  51.   a = archive
  52.  
  53. Any flag not set will be reset. This means that if you do not, 
  54. for example, set read-only the file will be write enabled.
  55.  
  56. DOS global filename chars '*' and '?' may be used.
  57.  
  58. Mode display includes 'w' for write ok and 'd' for a subdirectory.
  59.  
  60. C source is included. Type 'chmod' on the command line alone to see a brief introduction.
  61.  
  62.  
  63. ----------------------------------------
  64. DIF
  65. ---    A program to compare two DOS files (ASCII text) and print a
  66. summary of the differences between the two files. Works in a fashion similar
  67. to the Unix grep. Type 'grep' on the command line alone to see a brief
  68. introduction. C source is included.
  69.  
  70. ----------------------------------------
  71. GREP
  72. ----    A program to find ASCII strings in one or more DOS text files.
  73. Type 'grep' on the command line alone to see a brief introduction. C source
  74. is included.
  75.  
  76. ----------------------------------------
  77. MV    by Chuck Forsberg, 70715,131
  78. --    A program to move a DOS file from one location to another. Deletes
  79. the file being moved from its original location if the move was successful.
  80. Type 'mv' on the command line alone to see a brief introduction. C source is
  81. not included, but a brief .DOC file is included to provide additional
  82. information.
  83.  
  84. ----------------------------------------
  85. SSED
  86. ----    A simple stream editor for DOS. Reads STDIN, modifies it according
  87. to its arguments, and outputs the modified file or stream to STDOUT. Type
  88. 'ssed' on the command line alone to see a brief introduction. C source is not
  89. included.
  90.  
  91. ----------------------------------------
  92. TAIL
  93. ----    A program to 'type' only the last (or first) n lines of a DOS
  94. text file on the console. Type 'tail' on the command line alone to see a brief
  95. introduction. C source is not included.
  96.  
  97. ----------------------------------------
  98. WC
  99. --    A program to count lines, words, and characters in a DOS file. Type
  100. 'wc' on the command line alone to see a brief introduction. C source is not
  101. included.
  102.  
  103. ----------------------------------------
  104. [EOF]
  105.