Changeset 4651 for trunk/tools
- Timestamp:
- Nov 21, 2000, 5:34:25 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/bin/DoDirs.cmd
r4614 r4651 1 /* $Id: DoDirs.cmd,v 1. 1 2000-11-19 08:22:06bird Exp $1 /* $Id: DoDirs.cmd,v 1.2 2000-11-21 04:34:25 bird Exp $ 2 2 * 3 3 * Rexx script which executes a given command in each of the given … … 26 26 iRc = 0; /* Returncode */ 27 27 iStart = 1; /* Subdirectory Index */ 28 do while (iStart < length(sDirs))28 do while (iStart <= length(sDirs)) 29 29 iEnd = pos(' ', sDirs, iStart); 30 if (iEnd <= 0 & iStart < length(sDirs)) then30 if (iEnd <= 0 & iStart <= length(sDirs)) then 31 31 iEnd = length(sDirs) + 1; 32 32
Note:
See TracChangeset
for help on using the changeset viewer.