added a top level readme file.
[reactos.git] / rosapps / cmd / readme.txt
1 ReactOS Command Line Interface "CMD" version 0.1 pre 2
2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3
4 This is the fourth pre-alpha release of CMD.EXE for ReactOS.
5 It was converted from the FreeDOS COMMAND.COM.
6
7
8 Warning!! Warning!! Warning!!
9 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 This is an alpha version! Many features have not been tested!
11 Be careful when you use commands that write to your disk drives,
12 they might destroy your files or the file system!!!
13
14
15 Status
16 ~~~~~~
17 This is a converted version of FreeDOS COMMAND.COM.
18 I added some commands from WinNT's CMD.EXE.
19
20
21 New features and improvements
22 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 - Fixed redirection and piping.
24 (E.g. you can use "type > file" now.)
25 - Added new error redirections "2>" and "2>>".
26 (E.g.: "make 2>error.log")
27 - Added CHCP command.
28 - Fixed environment handling.
29 - New makefile for lcc-win (makefile.lcc).
30 - Rewrote DEL and MOVE with a new structure.
31 - Improved national language support.
32 - Fixed filename completion.
33
34
35 Compiling
36 ~~~~~~~~~
37 I converted CMD using MS Visual C++ 5.0 and Win95. The included makefile
38 is just an experimental version.
39
40 If you want to compile and test CMD with djgpp, modify the makefile as needed.
41 I put the CMD sources into [reactos\apps], the makefile is written for that
42 directory.
43
44 If you want to compile and test CMD using another compiler, just create
45 a new console application project and add all *.c and *.h files to it.
46 It should compile without an error.
47
48
49 Please report bugs which are not listed above.
50
51
52 Good luck
53
54 Eric Kohl <ekohl@abo.rhein-zeitung.de>
55
56
57
58
59 FreeDOS Command Line Interface
60 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
61 About
62 ~~~~~
63 This software is part of the FreeDOS project. Please email
64 freedos@sunsite.unc.edu for more information, or visit the freedos
65 archive at "ftp://sunsite.unc.edu/pub/micro/pc-stuff/freedos". Also,
66 visit our web page at http://www.freedos.org/.
67
68 The command.com web site is at
69
70 http://www.gcfl.net/FreeDOS/command.com/
71
72
73 This software has been developed by the following people:
74 (listed in approximate chronological order of contributions)
75
76 FreeDOS developers:
77 normat@rpi.edu (Tim Norman)
78 mrains@apanix.apana.org.au (Matt Rains)
79 ejeffrey@iastate.edu (Evan Jeffrey)
80 Steffen.Kaiser@Informatik.TU-Chemnitz.DE (Steffen Kaiser)
81 Svante Frey (sfrey@kuai.se)
82 Oliver Mueller (ogmueller@t-online.de)
83 Aaron Kaufman (morgan@remarque.berkeley.edu)
84 Marc Desrochers (bitzero@hotmail.com)
85 Rob Lake (rlake@cs.mun.ca)
86 John P. Price <linux-guru@gcfl.net>
87 Hans B Pufal <hansp@digiweb.com>
88
89 ReactOS developers:
90 Eric Kohl <ekohl@abo.rhein-zeitung.de>
91
92
93 Current Features
94 ~~~~~~~~~~~~~~~~
95 - environment handling with prompt and path support.
96 - directory utilities.
97 - command-line history with doskey-like features.
98 - batch file processing.
99 - input/output redirection and piping.
100 - alias support.
101 - filename completion (use TAB)