From: Brandon Turner Date: Sun, 9 Oct 2005 22:33:26 +0000 (+0000) Subject: Updated more cmd documentation. This included changing from eric's email to ros... X-Git-Tag: ReactOS-0.2.8~38 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=af2ef3d68518c33246039ac1530e556094f6bc3a 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 --- diff --git a/reactos/subsys/system/cmd/bugs.txt b/reactos/subsys/system/cmd/bugs.txt deleted file mode 100644 index ee9de9e7f42..00000000000 --- a/reactos/subsys/system/cmd/bugs.txt +++ /dev/null @@ -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! **** diff --git a/reactos/subsys/system/cmd/files.txt b/reactos/subsys/system/cmd/files.txt index 2a5e7d44c90..0004b4f0b1c 100644 --- a/reactos/subsys/system/cmd/files.txt +++ b/reactos/subsys/system/cmd/files.txt @@ -1,15 +1,11 @@ Archive Contents ~~~~~~~~~~~~~~~~ -bugs.txt Bug 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 readme.txt General shell info -todo.txt What I have to do -wishlist.txt Wish List - -makefile experimental makefile -makefile.lcc makefile for lcc-win +readme2.txt Techincal shell info +todo.txt Things that need to be implmented or fixed(including bugs) alias.c Alias code alias.h Alias header file diff --git a/reactos/subsys/system/cmd/readme.txt b/reactos/subsys/system/cmd/readme.txt index 0f60caa040c..5ac23049b41 100644 --- a/reactos/subsys/system/cmd/readme.txt +++ b/reactos/subsys/system/cmd/readme.txt @@ -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 FreeDOS command line interpreter. -We are going for 4NT compatibility but try to stay compatible with -WinNT's CMD.EXE too. +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. 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. +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. -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. +Using rbuild you can compile cmd seperatly by "make cmd_install". Also you can compile cmd using MSVC 6 and soon 7/8 hopefully. Current Features @@ -31,8 +22,7 @@ Current Features - batch file processing. - input/output redirection and piping. - alias support. - - filename completion (use TAB) - (this is still incomplete) + - filename completion (use TAB), both unix and windows style. Credits @@ -57,14 +47,9 @@ ReactOS developers: Brandon Turner + Bugs ~~~~ -Batch file handling is still untested or buggy. Please report -any bug you find. - -Please report bugs to Eric Kohl . - - -Good luck +There is still many bugs ;) +Please report bugs to ReactOS team or to bugzilla at www.reactos.org - Eric Kohl diff --git a/reactos/subsys/system/cmd/readme2.txt b/reactos/subsys/system/cmd/readme2.txt new file mode 100644 index 00000000000..0b42c941a5b --- /dev/null +++ b/reactos/subsys/system/cmd/readme2.txt @@ -0,0 +1 @@ +Nothing yet... \ No newline at end of file diff --git a/reactos/subsys/system/cmd/todo.txt b/reactos/subsys/system/cmd/todo.txt index 97fc937baed..153855b2e71 100644 --- a/reactos/subsys/system/cmd/todo.txt +++ b/reactos/subsys/system/cmd/todo.txt @@ -30,4 +30,7 @@ When doing "mkdir c:\windows\foo\bar\foofoo" where foo, bar, and foofoo are not A lot of commands on failure just spit out GetLastError instead of looking for the real cause. It should give a better output to give at least some kinda clue what is wrong. *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. \ No newline at end of file +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. \ No newline at end of file diff --git a/reactos/subsys/system/cmd/wishlist.txt b/reactos/subsys/system/cmd/wishlist.txt deleted file mode 100644 index 23e8f9a5f3c..00000000000 --- a/reactos/subsys/system/cmd/wishlist.txt +++ /dev/null @@ -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