Subversion Repositories SvarDOS

Rev

Rev 531 | Rev 571 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 531 Rev 543
Line 9... Line 9...
9
 
9
 
10
The goal is to make SvarCOM the default SvarDOS shell, replacing FreeCOM.
10
The goal is to make SvarCOM the default SvarDOS shell, replacing FreeCOM.
11
Why replacing FreeCOM, you ask? See FREECOM.TXT for details.
11
Why replacing FreeCOM, you ask? See FREECOM.TXT for details.
12
 
12
 
13
SvarCOM is a work-in-progress effort. As such, it still lacks a few things:
13
SvarCOM is a work-in-progress effort. As such, it still lacks a few things:
14
 - pipes (cmd.exe | more) and stdin redirections (cmd.exe < file)
-
 
15
 - advanced batch constructs (conditionals, errorlevels...)
-
 
16
 - a few internal commands missing: CALL, CTTY, GOTO, IF, LH
14
 - a few internal commands missing: CALL, CTTY, GOTO, LH
17
 - DIR misses a few switches (/S, /O, /A)
15
 - DIR misses two switches: /S, /O
18
 - ... (see TODO.TXT for more details)
-
 
19
 
16
 
20
SvarCOM is minimalist and I'd like to keep it that way. It aims to be
17
SvarCOM is minimalist and I'd like to keep it that way. It aims to be
21
functionaly equivalent to COMMAND.COM from MS-DOS 5.x/6.x. No LFN support.
18
functionaly equivalent to COMMAND.COM from MS-DOS 5.x/6.x. No LFN support.
22
 
19
 
23
As of version 2021.0, SvarCOM's resident footprint is under 2 KiB.
20
As of version 2021.1, SvarCOM's resident footprint is under 2 KiB.
24
 
21
 
25
Translation strings are stored in the file SVARCOM.LNG, which should be
22
Translation strings are stored in the file SVARCOM.LNG, which should be
26
placed in a directory pointed at by %NLSPATH% for SvarCOM to be able to output
23
placed in a directory pointed at by %NLSPATH% for SvarCOM to be able to output
27
messages in non-english languages. SvarCOM's language is controlled by the
24
messages in non-english languages. SvarCOM's language is controlled by the
28
%LANG% environment variable. NOTE: at this time translations aren't available
25
%LANG% environment variable. NOTE: at this time translations aren't available
Line 44... Line 41...
44
DATE        - displays or sets the system date
41
DATE        - displays or sets the system date
45
DEL/ERASE   - deletes one or more files
42
DEL/ERASE   - deletes one or more files
46
DIR         - displays a list of files and subdirectories in a directory
43
DIR         - displays a list of files and subdirectories in a directory
47
ECHO        - displays messages, or turns command-echoing on or off
44
ECHO        - displays messages, or turns command-echoing on or off
48
EXIT        - quits the command.com program (command interpreter)
45
EXIT        - quits the command.com program (command interpreter)
-
 
46
IF          - performs conditional processing in batch programs
49
MD/MKDIR    - creates a directory
47
MD/MKDIR    - creates a directory
50
PATH        - displays or sets a search path for executable files
48
PATH        - displays or sets a search path for executable files
51
PAUSE       - suspends processing of a batch program
49
PAUSE       - suspends processing of a batch program
52
PROMPT      - changes the DOS command prompt
50
PROMPT      - changes the DOS command prompt
53
REM         - records comments (remarks) in a batch file or CONFIG.SYS
51
REM         - records comments (remarks) in a batch file or CONFIG.SYS