Subversion Repositories SvarDOS

Rev

Rev 411 | Rev 431 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 411 Rev 427
1
 
1
 
2
                               === SVARCOM ===
2
                               === SVARCOM ===
3
 
3
 
4
 
4
 
5
SvarCOM is the SvarDOS command line interpreter, known usually under the name
5
SvarCOM is the SvarDOS command line interpreter, known usually under the name
6
"COMMAND.COM". It is designed and maintained by Mateusz Viste, and distributed
6
"COMMAND.COM". It is designed and maintained by Mateusz Viste, and distributed
7
under the terms of the MIT license.
7
under the terms of the MIT license.
8
 
8
 
9
For the time being, it is an incomplete, "work in progress" project. The goal
9
For the time being, it is an incomplete, "work in progress" project. The goal
10
is to make SvarCOM the default SvarDOS shell, replacing FreeCOM.
10
is to make SvarCOM the default SvarDOS shell, replacing FreeCOM.
11
 
11
 
12
Why replacing FreeCOM, you ask? See FREECOM.TXT for details.
12
Why replacing FreeCOM, you ask? See FREECOM.TXT for details.
13
 
13
 
14
 
14
 
15
Since SvarCOM is a work-in-progress effort, it still lacks a few things:
15
Since SvarCOM is a work-in-progress effort, it still lacks a few things:
16
 
16
 
17
- no support for pipes (eg. file.exe | more)
17
- no support for pipes (eg. file.exe | more)
18
- no support for batch (*.BAT) files
18
- no support for batch (*.BAT) files
19
- a few internal commands missing: CALL, CTTY, DATE, GOTO, IF, LH, SHIFT, TIME
19
- a few internal commands missing: CALL, CTTY, DATE, GOTO, IF, LH, SHIFT
20
 
20
 
21
 
21
 
22
Latest version available here: http://svardos.osdn.io/svarcom
22
Latest version available here: http://svardos.osdn.io/svarcom
23
 
23
 
24
 
24
 
25
=== INTERNAL COMMANDS ========================================================
25
=== INTERNAL COMMANDS ========================================================
26
 
26
 
27
SvarCOM implements the following internal commands. For help on each command,
27
SvarCOM implements the following internal commands. For help on each command,
28
run it with a "/?" argument.
28
run it with a "/?" argument.
29
 
29
 
30
BREAK       - sets or clears extended CTRL+C checking
30
BREAK       - sets or clears extended CTRL+C checking
31
CD/CHDIR    - displays the name of or changes the current directory
31
CD/CHDIR    - displays the name of or changes the current directory
32
CHCP        - displays or sets the active code page number
32
CHCP        - displays or sets the active code page number
33
CLS         - clears the screen
33
CLS         - clears the screen
34
COPY        - copies one or more files to another location
34
COPY        - copies one or more files to another location
35
DEL/ERASE   - deletes one or more files
35
DEL/ERASE   - deletes one or more files
36
DIR         - displays a list of files and subdirectories in a directory
36
DIR         - displays a list of files and subdirectories in a directory
37
ECHO        - displays messages, or turns command-echoing on or off
37
ECHO        - displays messages, or turns command-echoing on or off
38
EXIT        - quits the command.com program (command interpreter)
38
EXIT        - quits the command.com program (command interpreter)
39
MD/MKDIR    - creates a directory
39
MD/MKDIR    - creates a directory
40
PATH        - displays or sets a search path for executable files
40
PATH        - displays or sets a search path for executable files
41
PAUSE       - suspends processing of a batch program
41
PAUSE       - suspends processing of a batch program
42
PROMPT      - changes the DOS command prompt
42
PROMPT      - changes the DOS command prompt
43
REM         - records comments (remarks) in a batch file or CONFIG.SYS
43
REM         - records comments (remarks) in a batch file or CONFIG.SYS
44
REN/RENAME  - renames a file or files
44
REN/RENAME  - renames a file or files
45
RMDIR       - removes (deletes) a directory
45
RMDIR       - removes (deletes) a directory
46
SET         - displays, sets or removes DOS environment variables
46
SET         - displays, sets or removes DOS environment variables
-
 
47
TIME        - displays or sets the system time
47
TYPE        - displays the contents of a text file
48
TYPE        - displays the contents of a text file
48
VER         - displays the DOS version
49
VER         - displays the DOS version
49
VERIFY      - tells DOS whether to verify that files are written correctly
50
VERIFY      - tells DOS whether to verify that files are written correctly
50
VOL         - displays the disk volume label and serial number
51
VOL         - displays the disk volume label and serial number
51
 
52
 
52
 
53
 
53
=== LICENSE ==================================================================
54
=== LICENSE ==================================================================
54
 
55
 
55
SvarCOM is published under the terms of the MIT license.
56
SvarCOM is published under the terms of the MIT license.
56
 
57
 
57
Copyright (C) 2021 Mateusz Viste
58
Copyright (C) 2021 Mateusz Viste
58
 
59
 
59
Permission is hereby granted, free of charge, to any person obtaining a copy
60
Permission is hereby granted, free of charge, to any person obtaining a copy
60
of this software and associated documentation files (the "Software"), to deal
61
of this software and associated documentation files (the "Software"), to deal
61
in the Software without restriction, including without limitation the rights
62
in the Software without restriction, including without limitation the rights
62
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
63
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
63
copies of the Software, and to permit persons to whom the Software is
64
copies of the Software, and to permit persons to whom the Software is
64
furnished to do so, subject to the following conditions:
65
furnished to do so, subject to the following conditions:
65
 
66
 
66
The above copyright notice and this permission notice shall be included in all
67
The above copyright notice and this permission notice shall be included in all
67
copies or substantial portions of the Software.
68
copies or substantial portions of the Software.
68
 
69
 
69
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
70
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
70
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
71
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
71
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
72
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
72
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
73
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
73
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
74
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
74
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
75
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
75
SOFTWARE.
76
SOFTWARE.
76
 
77
 
77
 
78
 
78
==================================================================== [EOF] ===
79
==================================================================== [EOF] ===
79
 
80