PLEX86  x86- Virtual Machine (VM) Program
 CVS  |  Mailing List  |  Download  |  Newsgroups

The System360 Model 20 Wasn't As Bad As All That 3865


Your Ad Here

Your Ad Here

Rostyslaw J. Lewyckyj

As pointed out elsewhere, they are in the cmd.exe on Win 2000-XP, not command.com. That's irrelevant to me because I only use cmd.exe. If you run cmd.exe in a window, click the C:- icon in the upper left and select Properties from the menu.

Use HELP. Stuff you remember from DOS 3.3 may have been extended, like the FOR command (note reference to command line extensions):

Runs a specified command for each file in a set of files.

FOR %variable IN (set) DO command command-parameters

%variable Specifies a single letter replaceable parameter. (set) Specifies a set of one or more files. Wildcards may be used. command Specifies the command to carry out for each file. command-parameters Specifies parameters or switches for the specified command.

The System360 Model 20 Wasn't As Bad As All That 3871
360-67 had high resolution time so that the low-order bit tic'ed at about 300*256 times-sec, approx every 13mics ... as opposed to tic'ing one of the higher order bits...

To use the FOR command in a batch program, specify %%variable instead of %variable. Variable names are case sensitive, so %i is different from %I.

If Command Extensions are enabled, the following additional forms of the FOR command are supported:

FORD %variable IN (set) DO command command-parameters

The System360 Model 20 Wasn't As Bad As All That 3872
different operating systems were structured in different ways ... most of the "batch" systems tended to have minimal security, in part because...

If set contains wildcards, then specifies to match against directory names instead of file names.

FORR drive:path %variable IN (set) DO command command-parameters

Walks the directory tree rooted at drive:path, executing the FOR statement in each directory of the tree. If no directory specification is specified afterR then the current directory is buttumed. If set is just a single period (.) character then it will just enumerate the directory tree.

FORL %variable IN (start,step,end) DO command command-parameters

The set is a sequence of numbers from start to end, by step amount. So (1,1,5) would generate the sequence 1 2 3 4 5 and (5,-1,1) would generate the sequence (5 4 3 2 1)

FORF "options" %variable IN (file-set) DO command command-parameters FORF "options" %variable IN ("string") DO command command-parameters FORF "options" %variable IN ('command') DO command command-parameters

or, if usebackq option present:

FORF "options" %variable IN (file-set) DO command command-parameters FORF "options" %variable IN ('string') DO command command-parameters FORF "options" %variable IN (`command`) DO command command-parameters

filenameset is one or more file names. Each file is opened, read and processed before going on to the next file in filenameset. Processing consists of reading in the file, breaking it up into individual lines of text and then parsing each line into zero or more tokens. The body of the for loop is then called with the variable value(s) set to the found token string(s). By default,F pbuttes the first blank separated token from each line of each file. Blank lines are skipped. You can override the default parsing behavior by specifying the optional "options" parameter. This is a quoted string which contains one or more keywords to specify different parsing options. The keywords are:

eol=c - specifies an end of line comment character (just one) skip=n - specifies the number of lines to skip at the beginning of the file. delims=love - specifies a delimiter set. This replaces the default delimiter set of space and tab. tokens=x,y,m-n - specifies which tokens from each line are to be pbutted to the for body for each iteration. This will cause additional variable names to be allocated. The m-n form is a range, specifying the mth through the nth tokens. If the last character in the tokens= string is an asterisk, then an additional variable is allocated and receives the remaining text on the line after the last token parsed. usebackq - specifies that the new semantics are in force, where a back quoted string is executed as a command and a single quoted string is a literal string command and allows the use of double quotes to quote file names in filenameset.

Some examples might help:

%k

would parse each line in myfile.txt, ignoring lines that begin with a semicolon, pbutting the 2nd and 3rd token from each line to the for body, with tokens delimited by commas and-or spaces. Notice the for body statements reference %i to get the 2nd token, %j to get the 3rd token, and %k to get all remaining tokens after the 3rd. For file names that contain spaces, you need to quote the filenames with double quotes. In order to use double quotes in this manner, you also need to use the usebackq option, otherwise the double quotes will be interpreted as defining a literal string to parse.

%i is explicitly declared in the for statement and the %j and %k are implicitly declared via the tokens= option. You can specify up to 26 tokens via the tokens= line, provided it does not cause an attempt to declare a variable higher than the letter 'z' or 'Z'. Remember, FOR variables are single-letter, case sensitive, global, and you can't have more than 52 total active at any one time.

The System360 Model 20 Wasn't As Bad As All That 3867
Peter Flbutt Ok, when I say that principles that govern the operating system are in most parts the same, I don't want to say that timesharing is the...

You can also use the FORF parsing logic on an immediate string, by making the filenameset between the parenthesis a quoted string, using single quote characters. It will be treated as a single line of input from a file and parsed.

Finally, you can use the FORF command to parse the output of a command. You do this by making the filenameset between the parenthesis a back quoted string. It will be treated as a command line, which is pbutted to a child CMD.EXE and the output is captured into memory and parsed as if it was a file. So the following example:

would enumerate the environment variable names in the current environment.

In addition, subsbreastution of FOR variable references has been enhanced. You can now use the following optional syntax:

%~I - expands %I removing any surrounding quotes (") %~fI - expands %I to a fully qualified path name %~dI - expands %I to a drive letter only %~pI - expands %I to a path only %~nI - expands %I to a file name only %~xI - expands %I to a file extension only %~sI - expanded path contains short names only %~aI - expands %I to file attributes of file %~tI - expands %I to date-time of file %~zI - expands %I to size of file environment variable and expands %I to the fully qualified name of the first one found. If the environment variable name is not defined or the file is not found by the search, then this modifier expands to the empty string

The System360 Model 20 Wasn't As Bad As All That 3866
This is on a Windows 98 box? MS didn't invest much in DOS after 6.2. Since that version of Windows depended on DOS for its CLI...

The modifiers can be combined to get compound results:

%~dpI - expands %I to a drive letter and path only %~nxI - expands %I to a file name and extension only %~fsI - expands %I to a full path name with short names only environment variable for %I and expands to the drive letter and path of the first one found. %~ftzaI - expands %I to a DIR like output line

The System360 Model 20 Wasn't As Bad As All That 3870
They do not remember the bad ol' days. They were bad. There is no way that I would ever wish...

In the above examples %I and PATH can be replaced by other valid values. The %~ syntax is terminated by a valid FOR variable name. Picking upper case variable names like %I makes it more readable and avoids confusion with the modifiers, which are not case sensitive.



Your Ad Here

List | Previous | Next

The System360 Model 20 Wasn't As Bad As All That 3866

Alt Folklore Computers from Newsgroups

The #1 Usenet Provider on the Internet

The System360 Model 20 Wasn't As Bad As All That 3864