Subversion Repositories SvarDOS

Rev

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

Rev 989 Rev 990
Line 11... Line 11...
11
0.3:Invalid parameter format
11
0.3:Invalid parameter format
12
0.4:Too many parameters
12
0.4:Too many parameters
13
0.5:Bad command or file name
13
0.5:Bad command or file name
14
0.6:Invalid parameter
14
0.6:Invalid parameter
15
0.7:Required parameter missing
15
0.7:Required parameter missing
-
 
16
0.8:Invalid destination
-
 
17
 
-
 
18
# the message below MUST be a two-letter upper-case string for "Yes/No" keys
-
 
19
# that user can press to answer interactive "Yes/No" questions
-
 
20
0.10:YN
16
 
21
 
17
# SVARCOM HELP SCREEN
22
# SVARCOM HELP SCREEN
18
1.0:Starts the SvarCOM command interpreter
23
1.0:Starts the SvarCOM command interpreter
19
1.1:COMMAND /E:nnn [/[C|K] [/P] [/D] command]
24
1.1:COMMAND /E:nnn [/[C|K] [/P] [/D] command]
20
1.2:/D      Skip AUTOEXEC.BAT processing (makes sense only with /P)
25
1.2:/D      Skip AUTOEXEC.BAT processing (makes sense only with /P)
Line 127... Line 132...
127
# REN / RENAME
132
# REN / RENAME
128
25.0:Renames a file
133
25.0:Renames a file
129
25.1:RENAME [drive:][path]filename1 filename2
134
25.1:RENAME [drive:][path]filename1 filename2
130
25.2:REN [drive:][path]filename1 filename2
135
25.2:REN [drive:][path]filename1 filename2
131
25.3:Note that you cannot specify a new drive or path for your destination file.\r\nUse MOVE to rename a directory, or to move files from one directory to another.
136
25.3:Note that you cannot specify a new drive or path for your destination file.\r\nUse MOVE to rename a directory, or to move files from one directory to another.
132
25.4:Invalid destination
-
 
133
 
137
 
134
# REM
138
# REM
135
26.0:Records comments (remarks) in a batch file or CONFIG.SYS
139
26.0:Records comments (remarks) in a batch file or CONFIG.SYS
136
26.1:REM [comment]
140
26.1:REM [comment]
137
 
141
 
Line 175... Line 179...
175
 
179
 
176
# PROMPT
180
# PROMPT
177
33.0:Changes the DOS command prompt.
181
33.0:Changes the DOS command prompt.
178
33.1:PROMPT [new command prompt specification]
182
33.1:PROMPT [new command prompt specification]
179
 
183
 
-
 
184
# VOL
-
 
185
34.0:Displays the disk volume label and serial number, if they exist.
-
 
186
34.1:VOL [drive:]
-
 
187
34.2:Volume in drive %c has no label
-
 
188
34.3:Volume in drive %c is %s
-
 
189
34.4:Volume Serial Number is %04X-%04X
-
 
190
 
-
 
191
# IF
-
 
192
35.0:Performs conditional processing in batch programs.
-
 
193
35.1:IF [NOT] ERRORLEVEL num command
-
 
194
35.2:IF [NOT] string1==string2 command
-
 
195
35.3:IF [NOT] EXIST filename command
-
 
196
35.4:NOT               command is executed only if condition is NOT met
-
 
197
35.5:ERRORLEVEL num    condition: last program returned an exit code >= num
-
 
198
35.6:string1==string2  condition: both strings must be equal
-
 
199
35.7:EXIST filename    condition: filename exists (wildcards accepted)
-
 
200
35.8:command           command to carry out if condition is met
-
 
201
 
-
 
202
# DEL
-
 
203
36.0:Deletes one or more files.
-
 
204
36.1:DEL [drive:][path]filename [/P]
-
 
205
36.2:ERASE [drive:][path]filename [/P]
-
 
206
36.3:[drive:][path]filename  Specifies the file(s) to delete.
-
 
207
36.4:/P  Prompts for confirmation before deleting each file.
-
 
208
36.5:All files in directory will be deleted!
-
 
209
36.6:Are you sure (Y/N)?
-
 
210
36.7:Delete (Y/N)?
-
 
211
 
-
 
212
# DIR
-
 
213
37.0:Displays a list of files and subdirectories in a directory.
-
 
214
37.1:DIR [drive:][path][filename] [/P] [/W] [/A[:]attributes] [/O[[:]sortorder]] [/S] [/B] [/L]
-
 
215
37.2:/P Pauses after each screenful of information
-
 
216
37.3:/W Uses wide list format
-
 
217
37.4:/A Displays files with specified attributes:
-
 
218
37.5:    D Directories            R Read-only files        H Hidden files
-
 
219
37.6:    A Ready for archiving    S System files           - prefix meaning "not"
-
 
220
37.7:/O List files in sorted order:
-
 
221
37.8:    N by name                S by size                E by extension
-
 
222
37.9:    D by date                G group dirs first       - prefix to reverse order"
-
 
223
37.10:/S Displays files in specified directory and all subdirectories
-
 
224
37.11:/B Uses bare format (no heading information or summary)
-
 
225
37.12:/L Uses lowercases
-
 
226
37.20:Directory of %s
-
 
227
37.21:<DIR>
-
 
228
37.22:file(s)
-
 
229
37.23:bytes
-
 
230
37.24:bytes free
-
 
231
 
-
 
232
# COPY
-
 
233
38.0:Copies one or more files to another location.
-
 
234
38.1:COPY [/A|/B] source [/A|/B] [+source [/A|/B] [+...]] [destination [/A|/B]] [/V]
-
 
235
38.2:source       Specifies the file or files to be copied
-
 
236
38.3:/A           Indicates an ASCII text file
-
 
237
38.4:/B           Indicates a binary file
-
 
238
38.5:destination  Specifies the directory and/or filename for the new file(s)
-
 
239
38.6:/V           Verifies that new files are written correctly
-
 
240
38.7:To append files, specify a single file for destination, but multiple files\r\nfor source (using wildcards or file1+file2+file3 format).
-
 
241
38.8:NOTE: /A and /B are no-ops (ignored), provided only for compatibility reasons.
-
 
242
38.9:%u file(s) copied
-
 
243
 
180
# DOS ERRORS
244
# DOS ERRORS
181
255.1:Function number invalid
245
255.1:Function number invalid
182
255.2:File not found
246
255.2:File not found
183
255.3:Path not found
247
255.3:Path not found
184
255.4:Too many open files (no handles available)
248
255.4:Too many open files (no handles available)