Subversion Repositories SvarDOS

Rev

Rev 961 | Rev 1024 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
360 mateuszvis 1
 
521 mateuszvis 2
 
360 mateuszvis 3
                               === SVARCOM ===
4
 
5
 
6
SvarCOM is the SvarDOS command line interpreter, known usually under the name
7
"COMMAND.COM". It is designed and maintained by Mateusz Viste, and distributed
8
under the terms of the MIT license.
9
 
473 mateuszvis 10
SvarCOM is minimalist and I'd like to keep it that way. It aims to be
474 mateuszvis 11
functionaly equivalent to COMMAND.COM from MS-DOS 5.x/6.x. No LFN support.
360 mateuszvis 12
 
990 mateusz.vi 13
SvarCOM's resident footprint is under 2 KiB.
511 mateuszvis 14
 
497 mateuszvis 15
Translation strings are stored in the file SVARCOM.LNG, which should be
16
placed in a directory pointed at by %NLSPATH% for SvarCOM to be able to output
17
messages in non-english languages. SvarCOM's language is controlled by the
990 mateusz.vi 18
%LANG% environment variable.
497 mateuszvis 19
 
990 mateusz.vi 20
Latest version available here: http://svardos.org/svarcom
360 mateuszvis 21
 
22
 
395 mateuszvis 23
=== INTERNAL COMMANDS ========================================================
360 mateuszvis 24
 
395 mateuszvis 25
SvarCOM implements the following internal commands. For help on each command,
26
run it with a "/?" argument.
381 mateuszvis 27
 
409 mateuszvis 28
BREAK       - sets or clears extended CTRL+C checking
961 mateusz.vi 29
CALL        - calls a batch file from within another batch file
395 mateuszvis 30
CD/CHDIR    - displays the name of or changes the current directory
407 mateuszvis 31
CHCP        - displays or sets the active code page number
404 mateuszvis 32
CLS         - clears the screen
33
COPY        - copies one or more files to another location
431 mateuszvis 34
DATE        - displays or sets the system date
395 mateuszvis 35
DEL/ERASE   - deletes one or more files
36
DIR         - displays a list of files and subdirectories in a directory
405 mateuszvis 37
ECHO        - displays messages, or turns command-echoing on or off
395 mateuszvis 38
EXIT        - quits the command.com program (command interpreter)
961 mateusz.vi 39
GOTO        - directs batch processing to a labelled line in the batch program
543 mateuszvis 40
IF          - performs conditional processing in batch programs
571 mateuszvis 41
LN          - adds, deletes and displays global executable links
395 mateuszvis 42
MD/MKDIR    - creates a directory
43
PATH        - displays or sets a search path for executable files
400 mateuszvis 44
PAUSE       - suspends processing of a batch program
395 mateuszvis 45
PROMPT      - changes the DOS command prompt
638 mateusz.vi 46
RD/RMDIR    - removes (deletes) a directory
400 mateuszvis 47
REM         - records comments (remarks) in a batch file or CONFIG.SYS
406 mateuszvis 48
REN/RENAME  - renames a file or files
395 mateuszvis 49
SET         - displays, sets or removes DOS environment variables
521 mateuszvis 50
SHIFT       - changes the position of arguments in a batch file
427 mateuszvis 51
TIME        - displays or sets the system time
395 mateuszvis 52
TYPE        - displays the contents of a text file
53
VER         - displays the DOS version
54
VERIFY      - tells DOS whether to verify that files are written correctly
400 mateuszvis 55
VOL         - displays the disk volume label and serial number
381 mateuszvis 56
 
395 mateuszvis 57
 
578 mateuszvis 58
=== INSTALLATION =============================================================
59
 
60
Installing SvarCOM requires to either copy it to the root of your boot drive
61
replacing your current COMMAND.COM, or adding a SHELL directive to your
62
CONFIG.SYS file to instruct DOS that it should load SvarCOM as its shell, eg.:
63
 
638 mateusz.vi 64
  SHELL=C:\SVARCOM\COMMAND.COM /P
578 mateuszvis 65
 
66
Some DOSes support a SHELLHIGH directive that loads the shell in high memory.
67
It is pointless to use it to load SvarCOM. SvarCOM will load its resident part
638 mateusz.vi 68
as high as possible on its own, enforcing this through SHELLHIGH could even
69
be harmful since SvarCOM wouldn't be able to relocate to the highest address
70
as it would be allocated by SHELLHIGH already.
578 mateuszvis 71
 
72
SvarCOM supports multiple languages. To enable SvarCOM using them it is
73
necessary to define an NLSPATH environment variable that would point to a
74
directory and copy the SVARCOM.LNG file there. Once done, SvarCOM will try
75
loading whatever language is being set up in the LANG environment variable.
76
 
77
 
395 mateuszvis 78
=== LICENSE ==================================================================
79
 
80
SvarCOM is published under the terms of the MIT license.
81
 
571 mateuszvis 82
Copyright (C) 2021-2022 Mateusz Viste
395 mateuszvis 83
 
84
Permission is hereby granted, free of charge, to any person obtaining a copy
85
of this software and associated documentation files (the "Software"), to deal
86
in the Software without restriction, including without limitation the rights
87
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
88
copies of the Software, and to permit persons to whom the Software is
89
furnished to do so, subject to the following conditions:
90
 
91
The above copyright notice and this permission notice shall be included in all
92
copies or substantial portions of the Software.
93
 
94
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
95
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
96
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
97
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
98
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
99
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
100
SOFTWARE.
101
 
102
 
521 mateuszvis 103
====================================================================== EOF ===