Subversion Repositories SvarDOS

Rev

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

Rev 1082 Rev 1084
Line 19... Line 19...
19
# the message below MUST be a two-letter UPPER-CASE string for "Yes/No" keys
19
# the message below MUST be a two-letter UPPER-CASE string for "Yes/No" keys
20
# that user can press to answer interactive "Yes/No" questions
20
# that user can press to answer interactive "Yes/No" questions
21
0.10:YN
21
0.10:YN
22
 
22
 
23
# SVARCOM HELP SCREEN
23
# SVARCOM HELP SCREEN
24
1.0:Starts the SvarCOM command interpreter
24
1.0:Starts the SvarCOM command interpreter.
25
1.1:COMMAND /E:nnn [/P] [/D] [/Y] [/[C|K] command]
25
1.1:COMMAND /E:nnn [/P] [/D] [/Y] [/[C|K] command]
26
1.2:/D      Skip AUTOEXEC.BAT processing (makes sense only with /P)
26
1.2:/D      Skip AUTOEXEC.BAT processing (makes sense only with /P)
27
1.3:/E:nnn  Sets the environment size to nnn bytes
27
1.3:/E:nnn  Sets the environment size to nnn bytes
28
1.4:/P      Makes the new command interpreter permanent and run AUTOEXEC.BAT
28
1.4:/P      Makes the new command interpreter permanent and run AUTOEXEC.BAT
29
1.5:/C      Executes the specified command and returns
29
1.5:/C      Executes the specified command and returns
Line 34... Line 34...
34
2.0:SVARCOM VERSION CHANGED. SYSTEM HALTED. PLEASE REBOOT YOUR COMPUTER.
34
2.0:SVARCOM VERSION CHANGED. SYSTEM HALTED. PLEASE REBOOT YOUR COMPUTER.
35
2.1:FATAL ERROR: rmod_install() failed
35
2.1:FATAL ERROR: rmod_install() failed
36
2.2:SvarCOM: stack overflow detected, command history flushed (this is not a bug)
36
2.2:SvarCOM: stack overflow detected, command history flushed (this is not a bug)
37
 
37
 
38
# CLS
38
# CLS
39
10.0:Clears the screen
39
10.0:Clears the screen.
40
 
40
 
41
# CHCP
41
# CHCP
42
11.0:Displays or sets the active code page number.
42
11.0:Displays or sets the active code page number.
43
11.1:CHCP [nnn]
43
11.1:CHCP [nnn]
44
11.2:nnn  Specifies a code page number
44
11.2:nnn  Specifies a code page number
Line 57... Line 57...
57
12.5:.. Specifies that you want to change to the parent directory.
57
12.5:.. Specifies that you want to change to the parent directory.
58
12.6:Type CD drive: to display the current directory in the specified drive.
58
12.6:Type CD drive: to display the current directory in the specified drive.
59
12.7:Type CD without parameters to display the current drive and directory.
59
12.7:Type CD without parameters to display the current drive and directory.
60
 
60
 
61
# CALL
61
# CALL
62
13.0:Calls one batch program from another
62
13.0:Calls one batch program from another.
63
13.1:CALL [drive:][path]filename [batch-parameters]
63
13.1:CALL [drive:][path]filename [batch-parameters]
64
 
64
 
65
# BREAK
65
# BREAK
66
14.0:Sets or clears extended CTRL+C checking
66
14.0:Sets or clears extended CTRL+C checking.
67
14.1:Type BREAK without a parameter to display the current BREAK setting.
67
14.1:Type BREAK without a parameter to display the current BREAK setting.
68
14.2:BREAK is off
68
14.2:BREAK is off
69
14.3:BREAK is on
69
14.3:BREAK is on
70
 
70
 
71
# PAUSE
71
# PAUSE
72
15.0:Suspends the execution of a batch script
72
15.0:Suspends the execution of a batch script.
73
15.1:Press any key to continue...
73
15.1:Press any key to continue...
74
 
74
 
75
# SHIFT
75
# SHIFT
76
16.0:Changes the position of arguments in a batch file:
76
16.0:Changes the position of arguments in a batch file:
77
16.1:Argument %1 becomes %0, argument %2 becomes %1, etc.
77
16.1:Argument %1 becomes %0, argument %2 becomes %1, etc.
Line 82... Line 82...
82
17.2:LABEL specifies a text string used in the batch program as a label.
82
17.2:LABEL specifies a text string used in the batch program as a label.
83
17.3:A label is on a line by itself and must be preceded by a colon.
83
17.3:A label is on a line by itself and must be preceded by a colon.
84
17.10:Label not found
84
17.10:Label not found
85
 
85
 
86
# FOR
86
# FOR
87
18.0:Runs a specified command for each file in a set of files.
87
18.0:Runs a specified command for each member in a set.
88
18.1:FOR %variable IN (set) DO command [parameters]
88
18.1:FOR %variable IN (set) DO command [parameters]
89
18.2:%variable   A replaceable parameter name. (single letter)
89
18.2:%variable   A replaceable parameter name. (single letter)
90
18.3:(set)       One or more space-separated strings or filename wildcards.
90
18.3:(set)       One or more space-separated strings or filename wildcards.
91
18.4:command     The command to carry out for each matched file.
91
18.4:command     The command to carry out for each member.
92
18.5:parameters  Parameters or switches for the specified command.
92
18.5:parameters  Parameters or switches for the specified command.
93
18.6:To use FOR in a batch program, use %%variable instead of %variable.
93
18.6:To use FOR in a batch program, use %%variable instead of %variable.
94
18.7:FOR cannot be nested
94
18.7:FOR cannot be nested
95
 
95
 
96
# VERIFY
96
# VERIFY
Line 132... Line 132...
132
23.3:string    Specifies a series of characters to assign to the variable
132
23.3:string    Specifies a series of characters to assign to the variable
133
23.4:Type SET without parameters to display the current environment variables.
133
23.4:Type SET without parameters to display the current environment variables.
134
23.5:Not enough available space within the environment block
134
23.5:Not enough available space within the environment block
135
 
135
 
136
# RD / RMDIR
136
# RD / RMDIR
137
24.0:Removes (deletes) a directory
137
24.0:Removes (deletes) a directory.
138
24.1:RMDIR [drive:]path
138
24.1:RMDIR [drive:]path
139
24.2:RD [drive:]path
139
24.2:RD [drive:]path
140
 
140
 
141
# REN / RENAME
141
# REN / RENAME
142
25.0:Renames a file, a set of files or a directory
142
25.0:Renames a file, a set of files or a directory.
143
25.1:RENAME [drive:][path]filename1 filename2
143
25.1:RENAME [drive:][path]oldname newname
144
25.2:REN [drive:][path]filename1 filename2
144
25.2:REN [drive:][path]oldname newname
145
25.3:Note that you cannot specify a new drive or path for filename2.\r\nUse MOVE to move files from one directory to another.
145
25.3:Note that you cannot specify a new drive or path for newname.\r\nUse MOVE to move files from one directory to another.
146
25.4:Wildcards may be used to rename a set of files.
146
25.4:Wildcards may be used to rename a set of files or directories.
147
 
147
 
148
# REM
148
# REM
149
26.0:Records comments (remarks) in a batch file or CONFIG.SYS
149
26.0:Records comments (remarks) in a batch file.
150
26.1:REM [comment]
150
26.1:REM [comment]
151
 
151
 
152
# PATH
152
# PATH
153
27.0:Displays or sets a search path for executable files.
153
27.0:Displays or sets a search path for executable files.
154
27.1:PATH [[drive:]path[;...]]
154
27.1:PATH [[drive:]path[;...]]
155
27.2:Type PATH ; to clear all search-path settings and direct DOS to search\r\nonly in the current directory.
155
27.2:Type PATH ; to clear all search-path settings and direct DOS to search\r\nonly in the current directory.
156
27.3:Type PATH without parameters to display the current path.
156
27.3:Type PATH without parameters to display the current path.
157
27.4:No Path
157
27.4:No Path
158
 
158
 
159
# MD / MKDIR
159
# MD / MKDIR
160
28.0:Creates a directory
160
28.0:Creates a directory.
161
28.1:MKDIR [drive:]path
161
28.1:MKDIR [drive:]path
162
28.2:MD [drive:]path
162
28.2:MD [drive:]path
163
 
163
 
164
# LN
164
# LN
165
29.0:Adds, deletes or displays executable links.
165
29.0:Adds, deletes or displays executable links.
Line 168... Line 168...
168
29.3:LN LIST [pattern]
168
29.3:LN LIST [pattern]
169
29.4:No matching executable found in given path.
169
29.4:No matching executable found in given path.
170
29.5:%DOSDIR% not defined
170
29.5:%DOSDIR% not defined
171
 
171
 
172
# EXIT
172
# EXIT
173
30.0:Quits the COMMAND.COM program (command interpreter)
173
30.0:Quits the COMMAND.COM program (command interpreter).
174
 
174
 
175
# ECHO
175
# ECHO
176
31.0:Displays messages, or turns command-echoing on or off
176
31.0:Displays messages, or turns command-echoing on or off.
177
31.1:ECHO [message]
177
31.1:ECHO [message]
178
31.2:Type ECHO without parameters to display the current echo setting.
178
31.2:Type ECHO without parameters to display the current echo setting.
179
31.3:ECHO is on
179
31.3:ECHO is on
180
31.4:ECHO is off
180
31.4:ECHO is off
181
 
181