home *** CD-ROM | disk | FTP | other *** search
/ Zodiac Super OZ / MEDIADEPOT.ISO / FILES / 16 / FREEDOS.ZIP / FD_A4PRE.ZIP / HELP / COMMAND < prev    next >
Text File  |  1995-06-28  |  2KB  |  71 lines

  1. FreeDOS Command Interpreter
  2.  
  3. This package is part of the FreeDOS project.  Email James Hall
  4. (freedos@sunsite.unc.edu) for more information, or check out the archive
  5. at sunsite.unc.edu:/pub/pc-stuff/something.or.other  (I forget where
  6. it is exactly.)
  7.  
  8. This is version 0.10.  It's currently very alpha, but it does have some
  9. nifty little features.
  10.  
  11. Send bug reports and other info to me, Tim Norman, normat@rpi.edu.
  12.  
  13. Installation
  14. ------------
  15. This command interpreter is not really ready to be run as a shell, but
  16. it will work a little.  To make it your shell, add the following line to
  17. your CONFIG.SYS:
  18.  
  19. SHELL=C:\COMMAND.EXE
  20.  
  21. or whatever/whereever your executable is.
  22.  
  23. Current supported features
  24. --------------------------
  25. SET command (with really spiffy environment handling)
  26. complete PROMPT handling
  27. EXIT command (shell is exitable by default right now.  This will be set by
  28.   an environment variable later.)
  29. CD command (very simple directory changing.  Needs a little work.)
  30. DOSKEY command (merely prints a message saying it is not implemented)
  31. REM command (does nothing...  That was an easy one!)
  32. TAB filename completion
  33. command-line history
  34. drive changing
  35. PROMPT command
  36. DIR command (only if DIR executable not in path)
  37.  
  38. Soon to be supported (i.e. I've written them, but haven't gotten to add them
  39. in yet):
  40.  
  41. ALIAS command
  42.  
  43.  
  44. See the files BUGS and TODO for more info.
  45. Known bugs in COMMAND.EXE
  46.  
  47. It has some problems spawning other programs.  (It doesn't work.)  Works
  48. most of the time, but some programs really die hard...  Dunno why.
  49.  
  50. It does not pass the environment correctly to other programs (when it just
  51. happens to call the program at all) when there are no variables set.
  52.  
  53. CD won't work with no arguments.
  54.  
  55. path searching is messed up.  Doesn't use current path, but uses path that
  56. was passed to it...
  57.  
  58. When switching to a drive with no disk in it, it doesn't notice :-)
  59.  
  60. Command-line editing is REALLY slow, since it redraws each time.  This
  61. will be fixed soon.
  62.  
  63. Interesting features:
  64. ---------------------
  65.  
  66. It skips a line or three between each command prompt.
  67.  
  68. CD works with a terminating \ on a path.  This probably won't be a problem,
  69. but it is incosistent with MS-DOS.  It's nice to have since the TAB
  70. completion adds the \ if you're completing a directory.
  71.