reactos/rosapps/cmd
Eric Kohl 20bec3cf6b Implemented useful rename command.
svn path=/trunk/; revision=2302
2001-10-17 18:30:10 +00:00
..
.cvsignore Added .cvsignore to ignore cmd.coff 2001-06-17 23:10:07 +00:00
alias.c
attrib.c
batch.c Various improvements by Carl Nettelblad. 2001-02-28 22:33:23 +00:00
batch.h Various improvements by Carl Nettelblad. 2001-02-28 22:33:23 +00:00
beep.c
bugs.txt
call.c
chcp.c
choice.c
cls.c
cmd.c Share read access to files opened for redirection 2001-10-14 18:30:28 +00:00
cmd.h Reduced command line size in ReactOS mode 2001-02-03 10:37:51 +00:00
cmd.rc Implemented useful rename command. 2001-10-17 18:30:10 +00:00
cmdinput.c
cmdtable.c Fixed 'echo.' and 'echoerr.' 2000-07-19 06:58:13 +00:00
cmdver.h Implemented useful rename command. 2001-10-17 18:30:10 +00:00
color.c
config.h
console.c
copy.c
date.c
del.c
delay.c
dir.c Fixed compiling bug for gcc-2.95.3. 2001-07-11 20:26:58 +00:00
dirstack.c
echo.c Fixed 'echo.' and 'echoerr.' 2000-07-19 06:58:13 +00:00
error.c
filecomp.c
files.txt
for.c Various improvements by Carl Nettelblad. 2001-02-28 22:33:23 +00:00
free.c
goto.c
history.c
history.txt Fixed 'echo.' and 'echoerr.' 2000-07-19 06:58:13 +00:00
if.c CMD: implemented IF [NOT] DEFINED variable command 2001-02-18 18:51:46 +00:00
internal.c Fixed a warning. 2001-07-12 11:59:51 +00:00
label.c
license.txt
locale.c
makefile cmd, more, tee, y, notevil, sysutils linked to msvcrt.dll. 2001-07-28 08:02:05 +00:00
memory.c
misc.c
move.c
msgbox.c
path.c
pause.c
prompt.c
readme.txt Fixed 'echo.' and 'echoerr.' 2000-07-19 06:58:13 +00:00
redir.c Fixed bug parsing redirections 2001-10-14 18:30:56 +00:00
ren.c Implemented useful rename command. 2001-10-17 18:30:10 +00:00
screen.c
set.c
shift.c
start.c Corrected CreateProcess() command line parameter to be more compatible with NT 2001-06-18 02:55:47 +00:00
strtoclr.c
time.c
timer.c
title.c
todo.txt
type.c There was the wrong file handle in a call to FindClose(). 2001-08-16 10:07:42 +00:00
ver.c Implemented useful rename command. 2001-10-17 18:30:10 +00:00
verify.c
vol.c Some minor cleanup 2001-04-26 11:31:33 +00:00
where.c Some minor cleanup 2001-04-26 11:31:33 +00:00
window.c
wishlist.txt Fixed a horrible typo :-) 2001-02-22 23:46:45 +00:00

ReactOS command line interpreter CMD version 0.1.1
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The ReactOS command line interpreter CMD is derived from FreeCOM, the
FreeDOS command line interpreter.

We are going for 4NT compatibility but try to stay compatible with
WinNT's CMD.EXE too.


Compiling
~~~~~~~~~
Cmd can be built in two different versions. A full version for use under
Windows 9x or Windows NT and a reduced version for use under ReactOS.

Note: The full version won't run on ReactOS and the reduced version is not
usable under Win 9x/NT.

To build the full version, make sure the symbol '__REACTOS__' is NOT defined
in 'rosapps/cmd/config.h' line 13.

To build the reduced version, make sure the symbol '__REACTOS__' is defined
in 'rosapps/cmd/config.h' line 13.


Current Features
~~~~~~~~~~~~~~~~
 - environment handling with prompt and path support.
 - directory utilities.
 - command-line history with doskey-like features.
 - batch file processing.
 - input/output redirection and piping.
 - alias support.
 - filename completion (use TAB)
   (this is still incomplete)


Credits
~~~~~~~
FreeDOS developers:
   normat@rpi.edu (Tim Norman)
   mrains@apanix.apana.org.au (Matt Rains)
   ejeffrey@iastate.edu (Evan Jeffrey)
   Steffen.Kaiser@Informatik.TU-Chemnitz.DE (Steffen Kaiser)
   Svante Frey (sfrey@kuai.se)
   Oliver Mueller (ogmueller@t-online.de)
   Aaron Kaufman (morgan@remarque.berkeley.edu)
   Marc Desrochers (bitzero@hotmail.com)
   Rob Lake (rlake@cs.mun.ca)
   John P. Price <linux-guru@gcfl.net>
   Hans B Pufal <hansp@digiweb.com>

ReactOS developers:
   Eric Kohl <ekohl@rz-online.de>
   Emanuele Aliberti <ea@iol.it>
   Paolo Pantaleo <paolopan@freemail.it>


Bugs
~~~~
Batch file handling is still untested or buggy. Please report
any bug you find.

Please report bugs to Eric Kohl <ekohl@rz-online.de>.


Good luck

  Eric Kohl