Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 1097 → Rev 1098

/svarcom/trunk/cmd/for.c
87,13 → 87,13
 
/* help screen ONLY if /? is the only argument */
if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
nls_outputnl(18,0); /* "Runs a specified command for each file in a set of files" */
nls_outputnl(18,0); /* "Runs a specified command for each element in a list." */
outputnl("");
nls_outputnl(18,1); /* "FOR %variable IN (set) DO command [parameters]" */
nls_outputnl(18,1); /* "FOR %variable IN (list) DO command [parameters]" */
outputnl("");
nls_outputnl(18,2); /* "%variable A replaceable parameter name. (single letter)" */
nls_outputnl(18,3); /* "(set) One of more space-separated strings or filename wildcards." */
nls_outputnl(18,4); /* "command The command to carry out for each matched file." */
nls_outputnl(18,2); /* "%variable Single-letter variable (a-z or A-Z)." */
nls_outputnl(18,3); /* "(list) One or more space-separated strings or filename wildcards." */
nls_outputnl(18,4); /* "command The command to carry out for each element. %variable allowed." */
nls_outputnl(18,5); /* "parameters Parameters or switches for the specified command." */
outputnl("");
nls_outputnl(18,6); /* "To use FOR in a batch program, use %%variable instead of %variable" */
/svarcom/trunk/cmd/rem.c
30,7 → 30,7
/* help screen ONLY if /? is the only argument - I do not want to output
* help for ex. for "REM mouse.com /?" */
if ((p->argc == 1) && (imatch(p->argv[0], "/?"))) {
nls_outputnl(26,0); /* "Records comments (remarks) in a batch file or CONFIG.SYS" */
nls_outputnl(26,0); /* "Records comments (remarks) in a batch file." */
outputnl("");
nls_outputnl(26,1); /* "REM [comment]" */
}
/svarcom/trunk/cmd/rename.c
35,10 → 35,10
struct DTA *dta = (void *)0x80; /* use default DTA in PSP */
 
if (cmd_ishlp(p)) {
nls_outputnl(25,0); /* "Renames a file or a set of files" */
nls_outputnl(25,0); /* "Renames one or more files or directories." */
outputnl("");
nls_outputnl(25,1); /* "RENAME [drive:][path]filename1 filename2" */
nls_outputnl(25,2); /* "REN [drive:][path]filename1 filename2" */
nls_outputnl(25,1); /* "RENAME [drive:][path]oldname newname" */
nls_outputnl(25,2); /* "REN [drive:][path]oldname newname" */
outputnl("");
nls_outputnl(25,3); /* "Note that you cannot specify a new drive or (...)" */
return(CMD_OK);
/svarcom/trunk/cmd/ver.c
35,7 → 35,7
 
/* help screen */
if (cmd_ishlp(p)) {
nls_outputnl(20,0); /* "Displays the DOS version." */
nls_outputnl(20,0); /* "Displays the DOS kernel and SvarCOM shell versions." */
outputnl("");
output("ver [/about]");
#ifdef VERDBG