mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:42:57 +00:00
Updated more cmd documentation. This included changing from eric's email to ros-dev / bugzilla for suggested way of reporting bugs.
svn path=/trunk/; revision=18389
This commit is contained in:
parent
2b001b30bf
commit
af2ef3d685
6 changed files with 17 additions and 66 deletions
|
@ -1,22 +0,0 @@
|
||||||
**** Please report bugs to ekohl@rz-online.de! ****
|
|
||||||
|
|
||||||
Known bugs in CMD version 0.1
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
o let set work with or without the '=' sign. People like it that way.
|
|
||||||
(I don't know, if I should really fix this?)
|
|
||||||
|
|
||||||
o command.com ignores control-c and control-break, which makes it difficult
|
|
||||||
to quit typing a long file, among other things
|
|
||||||
|
|
||||||
o "alias v = dir" doesn't work because of the spaces.
|
|
||||||
|
|
||||||
o Dymatic commandline buffer need to be implement, current set to 8192bytes
|
|
||||||
|
|
||||||
o Batchfile read row size need to be implement as dymatic not set to 2000bytes
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
**** Please report bugs to ekohl@rz-online.de! ****
|
|
|
@ -1,15 +1,11 @@
|
||||||
Archive Contents
|
Archive Contents
|
||||||
~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~
|
||||||
bugs.txt Bug List
|
|
||||||
files.txt This file list
|
files.txt This file list
|
||||||
history.txt History of the shell development
|
history.txt History of revsions. Not to date. see svn.reactos.com for more info.
|
||||||
license.txt GNU license - applies to all files named here
|
license.txt GNU license - applies to all files named here
|
||||||
readme.txt General shell info
|
readme.txt General shell info
|
||||||
todo.txt What I have to do
|
readme2.txt Techincal shell info
|
||||||
wishlist.txt Wish List
|
todo.txt Things that need to be implmented or fixed(including bugs)
|
||||||
|
|
||||||
makefile experimental makefile
|
|
||||||
makefile.lcc makefile for lcc-win
|
|
||||||
|
|
||||||
alias.c Alias code
|
alias.c Alias code
|
||||||
alias.h Alias header file
|
alias.h Alias header file
|
||||||
|
|
|
@ -1,26 +1,17 @@
|
||||||
ReactOS command line interpreter CMD version 0.1.1
|
ReactOS command line interpreter CMD
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
The ReactOS command line interpreter CMD is derived from FreeCOM, the
|
The ReactOS command line interpreter CMD is derived from FreeCOM, the
|
||||||
FreeDOS command line interpreter.
|
FreeDOS command line interpreter.
|
||||||
|
|
||||||
We are going for 4NT compatibility but try to stay compatible with
|
We are shooting mainly to be just like 2000/XP cmd.exe. They are very close and only a small number(none that i can recall off the top of my head, so maybe 0) differences have been found between those two. It has been reported that ROS cmd.exe does not work on nt4 because of a missing api. I'm hoping to fix this at some point.
|
||||||
WinNT's CMD.EXE too.
|
|
||||||
|
|
||||||
|
|
||||||
Compiling
|
Compiling
|
||||||
~~~~~~~~~
|
~~~~~~~~~
|
||||||
Cmd can be built in two different versions. A full version for use under
|
ROS cmd used to depend on __REACTOS__ to provide two different ways to build cmd. There is still code left in it for this but... The __REACTOS__ = 0 has not been develped, maintained. And therefore it does not even compile anymore. __REACTOS__ = 1 works fine on both windows(nt). and someday i plan to remove all the __REACTOS__ = 0.
|
||||||
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
|
Using rbuild you can compile cmd seperatly by "make cmd_install". Also you can compile cmd using MSVC 6 and soon 7/8 hopefully.
|
||||||
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
|
Current Features
|
||||||
|
@ -31,8 +22,7 @@ Current Features
|
||||||
- batch file processing.
|
- batch file processing.
|
||||||
- input/output redirection and piping.
|
- input/output redirection and piping.
|
||||||
- alias support.
|
- alias support.
|
||||||
- filename completion (use TAB)
|
- filename completion (use TAB), both unix and windows style.
|
||||||
(this is still incomplete)
|
|
||||||
|
|
||||||
|
|
||||||
Credits
|
Credits
|
||||||
|
@ -57,14 +47,9 @@ ReactOS developers:
|
||||||
Brandon Turner <turnerb7@msu.edu>
|
Brandon Turner <turnerb7@msu.edu>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Bugs
|
Bugs
|
||||||
~~~~
|
~~~~
|
||||||
Batch file handling is still untested or buggy. Please report
|
There is still many bugs ;)
|
||||||
any bug you find.
|
Please report bugs to ReactOS team <ros-dev@reactos.org> or to bugzilla at www.reactos.org
|
||||||
|
|
||||||
Please report bugs to Eric Kohl <ekohl@rz-online.de>.
|
|
||||||
|
|
||||||
|
|
||||||
Good luck
|
|
||||||
|
|
||||||
Eric Kohl
|
|
||||||
|
|
1
reactos/subsys/system/cmd/readme2.txt
Normal file
1
reactos/subsys/system/cmd/readme2.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Nothing yet...
|
|
@ -31,3 +31,6 @@ A lot of commands on failure just spit out GetLastError instead of looking for t
|
||||||
|
|
||||||
*Reg Testing
|
*Reg Testing
|
||||||
We need more batch files like the one Royce made for "set /a". What out for if bugs when doing this... could lead to in the wrong direction when looking for a regression.
|
We need more batch files like the one Royce made for "set /a". What out for if bugs when doing this... could lead to in the wrong direction when looking for a regression.
|
||||||
|
|
||||||
|
*Remove dependance on __REACTOS__
|
||||||
|
__REACTOS__ = 0 doesnt compile and is useless. __REACTOS__ = 1 has been the default and works just fine on windows.
|
|
@ -1,12 +0,0 @@
|
||||||
|
|
||||||
Wishlist for ReactOS CMD
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
- Progress indikator on long file operations (copy/move).
|
|
||||||
Percentage at the right side of the filename.
|
|
||||||
|
|
||||||
- [cd test directory] should change to the subdirectory "test directory".
|
|
||||||
|
|
||||||
More ideas?
|
|
||||||
|
|
||||||
Eric Kohl <ekohl@rz-online.de>
|
|
Loading…
Add table
Add a link
Reference in a new issue