Subversion Repositories SvarDOS

Rev

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

Rev 404 Rev 405
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 batch file support
18
- no batch file support
19
- few internal commands missing: BREAK, CHCP, CTTY, LH, REN, DATE, TIME, ECHO, IF, SHIFT
19
- few internal commands missing: BREAK, CHCP, CTTY, LH, REN, DATE, TIME, IF, 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
CD/CHDIR    - displays the name of or changes the current directory
30
CD/CHDIR    - displays the name of or changes the current directory
31
CLS         - clears the screen
31
CLS         - clears the screen
32
COPY        - copies one or more files to another location
32
COPY        - copies one or more files to another location
33
DEL/ERASE   - deletes one or more files
33
DEL/ERASE   - deletes one or more files
34
DIR         - displays a list of files and subdirectories in a directory
34
DIR         - displays a list of files and subdirectories in a directory
-
 
35
ECHO        - displays messages, or turns command-echoing on or off
35
EXIT        - quits the command.com program (command interpreter)
36
EXIT        - quits the command.com program (command interpreter)
36
MD/MKDIR    - creates a directory
37
MD/MKDIR    - creates a directory
37
PATH        - displays or sets a search path for executable files
38
PATH        - displays or sets a search path for executable files
38
PAUSE       - suspends processing of a batch program
39
PAUSE       - suspends processing of a batch program
39
PROMPT      - changes the DOS command prompt
40
PROMPT      - changes the DOS command prompt
40
REM         - records comments (remarks) in a batch file or CONFIG.SYS
41
REM         - records comments (remarks) in a batch file or CONFIG.SYS
41
RMDIR       - removes (deletes) a directory
42
RMDIR       - removes (deletes) a directory
42
SET         - displays, sets or removes DOS environment variables
43
SET         - displays, sets or removes DOS environment variables
43
TYPE        - displays the contents of a text file
44
TYPE        - displays the contents of a text file
44
VER         - displays the DOS version
45
VER         - displays the DOS version
45
VERIFY      - tells DOS whether to verify that files are written correctly
46
VERIFY      - tells DOS whether to verify that files are written correctly
46
VOL         - displays the disk volume label and serial number
47
VOL         - displays the disk volume label and serial number
47
 
48
 
48
 
49
 
49
=== LICENSE ==================================================================
50
=== LICENSE ==================================================================
50
 
51
 
51
SvarCOM is published under the terms of the MIT license.
52
SvarCOM is published under the terms of the MIT license.
52
 
53
 
53
Copyright (C) 2021 Mateusz Viste
54
Copyright (C) 2021 Mateusz Viste
54
 
55
 
55
Permission is hereby granted, free of charge, to any person obtaining a copy
56
Permission is hereby granted, free of charge, to any person obtaining a copy
56
of this software and associated documentation files (the "Software"), to deal
57
of this software and associated documentation files (the "Software"), to deal
57
in the Software without restriction, including without limitation the rights
58
in the Software without restriction, including without limitation the rights
58
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
59
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
59
copies of the Software, and to permit persons to whom the Software is
60
copies of the Software, and to permit persons to whom the Software is
60
furnished to do so, subject to the following conditions:
61
furnished to do so, subject to the following conditions:
61
 
62
 
62
The above copyright notice and this permission notice shall be included in all
63
The above copyright notice and this permission notice shall be included in all
63
copies or substantial portions of the Software.
64
copies or substantial portions of the Software.
64
 
65
 
65
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
66
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
66
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
67
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
67
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
68
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
68
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
69
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
69
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
70
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
70
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
71
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
71
SOFTWARE.
72
SOFTWARE.
72
 
73
 
73
 
74
 
74
==================================================================== [EOF] ===
75
==================================================================== [EOF] ===
75
 
76