Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 1083 → Rev 1084

/svarcom/trunk/history.txt
22,6 → 22,7
- added German translations, courtesy of Robert Riebisch (bttr)
- added French translations, kindly contributed by Berki Yenigun (thraex)
- added Turkish translations, submitted by Berki Yenigun (thraex)
- fixed and improved English help screens
 
 
=== ver 2022.2 (04.03.2022) ==================================================
/svarcom/trunk/lang/en-utf8.txt
21,7 → 21,7
0.10:YN
 
# SVARCOM HELP SCREEN
1.0:Starts the SvarCOM command interpreter
1.0:Starts the SvarCOM command interpreter.
1.1:COMMAND /E:nnn [/P] [/D] [/Y] [/[C|K] command]
1.2:/D Skip AUTOEXEC.BAT processing (makes sense only with /P)
1.3:/E:nnn Sets the environment size to nnn bytes
36,7 → 36,7
2.2:SvarCOM: stack overflow detected, command history flushed (this is not a bug)
 
# CLS
10.0:Clears the screen
10.0:Clears the screen.
 
# CHCP
11.0:Displays or sets the active code page number.
59,17 → 59,17
12.7:Type CD without parameters to display the current drive and directory.
 
# CALL
13.0:Calls one batch program from another
13.0:Calls one batch program from another.
13.1:CALL [drive:][path]filename [batch-parameters]
 
# BREAK
14.0:Sets or clears extended CTRL+C checking
14.0:Sets or clears extended CTRL+C checking.
14.1:Type BREAK without a parameter to display the current BREAK setting.
14.2:BREAK is off
14.3:BREAK is on
 
# PAUSE
15.0:Suspends the execution of a batch script
15.0:Suspends the execution of a batch script.
15.1:Press any key to continue...
 
# SHIFT
84,11 → 84,11
17.10:Label not found
 
# FOR
18.0:Runs a specified command for each file in a set of files.
18.0:Runs a specified command for each member in a set.
18.1:FOR %variable IN (set) DO command [parameters]
18.2:%variable A replaceable parameter name. (single letter)
18.3:(set) One or more space-separated strings or filename wildcards.
18.4:command The command to carry out for each matched file.
18.4:command The command to carry out for each member.
18.5:parameters Parameters or switches for the specified command.
18.6:To use FOR in a batch program, use %%variable instead of %variable.
18.7:FOR cannot be nested
134,19 → 134,19
23.5:Not enough available space within the environment block
 
# RD / RMDIR
24.0:Removes (deletes) a directory
24.0:Removes (deletes) a directory.
24.1:RMDIR [drive:]path
24.2:RD [drive:]path
 
# REN / RENAME
25.0:Renames a file, a set of files or a directory
25.1:RENAME [drive:][path]filename1 filename2
25.2:REN [drive:][path]filename1 filename2
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.
25.4:Wildcards may be used to rename a set of files.
25.0:Renames a file, a set of files or a directory.
25.1:RENAME [drive:][path]oldname newname
25.2:REN [drive:][path]oldname newname
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.
25.4:Wildcards may be used to rename a set of files or directories.
 
# REM
26.0:Records comments (remarks) in a batch file or CONFIG.SYS
26.0:Records comments (remarks) in a batch file.
26.1:REM [comment]
 
# PATH
157,7 → 157,7
27.4:No Path
 
# MD / MKDIR
28.0:Creates a directory
28.0:Creates a directory.
28.1:MKDIR [drive:]path
28.2:MD [drive:]path
 
170,10 → 170,10
29.5:%DOSDIR% not defined
 
# EXIT
30.0:Quits the COMMAND.COM program (command interpreter)
30.0:Quits the COMMAND.COM program (command interpreter).
 
# ECHO
31.0:Displays messages, or turns command-echoing on or off
31.0:Displays messages, or turns command-echoing on or off.
31.1:ECHO [message]
31.2:Type ECHO without parameters to display the current echo setting.
31.3:ECHO is on