This repository has been archived by the owner on Feb 22, 2022. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow briefer FOR statements: for do ... -> for %%_ in (:*) do ... for %%? do ... -> for %%? in (:range*) do ... for %%? N ... -> for %%? in (:range*N) ... There must be whitespace after "do", the other delimiters ("=,;") will not be recognised. There must only be a single whitespace after the variable for "do" or the number to be recognised. A delayed variable is assumed to be a number, use two spaces if that is not the case. FOR /F has a new option "line", which sets "delims" and "eol" to NUL, ensuring a complete line will be read (assuming "tokens" is still 1).
- Loading branch information