Subversion Repositories SvarDOS

Rev

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

Rev 395 Rev 397
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 redirections or pipes (eg. file.exe | more > out.txt)
17
- no support for redirections or pipes (eg. file.exe | more > out.txt)
18
- no batch file support
18
- no batch file support
19
- few internal commands missing: BREAK, CHCP, CLS, CTTY, LH, REN, COPY, DATE,
19
- few internal commands missing: BREAK, CHCP, CLS, CTTY, LH, REN, COPY, DATE,
20
  TIME, VOL, PAUSE, ECHO, IF, REM, SHIFT
20
  TIME, VOL, PAUSE, ECHO, IF, REM, SHIFT
21
 
21
 
22
 
22
 
23
Latest version available here: http://svardos.osdn.io/svarcom
23
Latest version available here: http://svardos.osdn.io/svarcom
24
 
24
 
25
 
25
 
26
=== INTERNAL COMMANDS ========================================================
26
=== INTERNAL COMMANDS ========================================================
27
 
27
 
28
SvarCOM implements the following internal commands. For help on each command,
28
SvarCOM implements the following internal commands. For help on each command,
29
run it with a "/?" argument.
29
run it with a "/?" argument.
30
 
30
 
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
DEL/ERASE   - deletes one or more files
32
DEL/ERASE   - deletes one or more files
33
DIR         - displays a list of files and subdirectories in a directory
33
DIR         - displays a list of files and subdirectories in a directory
34
EXIT        - quits the command.com program (command interpreter)
34
EXIT        - quits the command.com program (command interpreter)
35
MD/MKDIR    - creates a directory
35
MD/MKDIR    - creates a directory
36
PATH        - displays or sets a search path for executable files
36
PATH        - displays or sets a search path for executable files
37
PROMPT      - changes the DOS command prompt
37
PROMPT      - changes the DOS command prompt
38
RMDIR       - removes (deletes) a directory
38
RMDIR       - removes (deletes) a directory
39
SET         - displays, sets or removes DOS environment variables
39
SET         - displays, sets or removes DOS environment variables
40
TYPE        - displays the contents of a text file
40
TYPE        - displays the contents of a text file
41
VER         - displays the DOS version
41
VER         - displays the DOS version
42
VERIFY      - tells DOS whether to verify that files are written correctly
42
VERIFY      - tells DOS whether to verify that files are written correctly
43
 
43
 
44
 
44
 
45
=== LICENSE ==================================================================
45
=== LICENSE ==================================================================
46
 
46
 
47
SvarCOM is published under the terms of the MIT license.
47
SvarCOM is published under the terms of the MIT license.
48
 
48
 
49
Copyright (C) 2021 Mateusz Viste
49
Copyright (C) 2021 Mateusz Viste
50
 
50
 
51
Permission is hereby granted, free of charge, to any person obtaining a copy
51
Permission is hereby granted, free of charge, to any person obtaining a copy
52
of this software and associated documentation files (the "Software"), to deal
52
of this software and associated documentation files (the "Software"), to deal
53
in the Software without restriction, including without limitation the rights
53
in the Software without restriction, including without limitation the rights
54
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
54
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
55
copies of the Software, and to permit persons to whom the Software is
55
copies of the Software, and to permit persons to whom the Software is
56
furnished to do so, subject to the following conditions:
56
furnished to do so, subject to the following conditions:
57
 
57
 
58
The above copyright notice and this permission notice shall be included in all
58
The above copyright notice and this permission notice shall be included in all
59
copies or substantial portions of the Software.
59
copies or substantial portions of the Software.
60
 
60
 
61
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
61
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
62
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
62
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
63
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
63
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
64
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
64
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
65
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
65
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
66
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
66
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
67
SOFTWARE.
67
SOFTWARE.
68
 
68
 
69
 
69
 
70
==================================================================== [EOF] ===
70
==================================================================== [EOF] ===
71
 
71