Changeset 9109 for trunk/tools/bin
- Timestamp:
 - Aug 24, 2002, 6:29:06 AM (23 years ago)
 - Location:
 - trunk/tools/bin
 - Files:
 - 
      
- 3 edited
 
- 
          
  DoDirs.cmd (modified) (3 diffs)
 - 
          
  DoMakes.cmd (modified) (3 diffs)
 - 
          
  DoWithDirs.cmd (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/tools/bin/DoDirs.cmd
r9032 r9109 1 /* $Id: DoDirs.cmd,v 1. 5 2002-08-20 04:07:11bird Exp $1 /* $Id: DoDirs.cmd,v 1.6 2002-08-24 04:29:06 bird Exp $ 2 2 * 3 3 * Rexx script which executes a given command in each of the given … … 11 11 * Project Odin Software License can be found in LICENSE.TXT 12 12 */ 13 signal on novalue name NoValueHandler 13 14 14 15 parse arg '"'sDirs'" 'sCommand … … 107 108 parse arg sVar 108 109 return value(sVar,,'OS2ENVIRONMENT'); 110 111 /** 112 * No value handler 113 */ 114 NoValueHandler: 115 say 'NoValueHandler: line 'SIGL; 116 return 0; 117  - 
      
trunk/tools/bin/DoMakes.cmd
r9032 r9109 1 /* $Id: DoMakes.cmd,v 1. 2 2002-08-20 04:07:11bird Exp $1 /* $Id: DoMakes.cmd,v 1.3 2002-08-24 04:29:06 bird Exp $ 2 2 * 3 3 * Rexx script which executes a given command with each of … … 10 10 * Project Odin Software License can be found in LICENSE.TXT 11 11 */ 12 signal on novalue name NoValueHandler 12 13 13 14 parse arg '"'sMakefiles'" 'sCommand … … 91 92 return value(sVar,,'OS2ENVIRONMENT'); 92 93 94 /** 95 * No value handler 96 */ 97 NoValueHandler: 98 say 'NoValueHandler: line 'SIGL; 99 return 0; 100  - 
      
trunk/tools/bin/DoWithDirs.cmd
r9032 r9109 1 /* $Id: DoWithDirs.cmd,v 1.1 3 2002-08-20 04:07:11bird Exp $1 /* $Id: DoWithDirs.cmd,v 1.14 2002-08-24 04:29:06 bird Exp $ 2 2 * 3 3 * Syntax: dowithdirs.cmd [-e<list of excludes>] [-c] [-i] [-l] [-r] <cmd with args...> … … 12 12 * <tag> is a name of the lock. 13 13 * -s Skip locked directories in stead of stopping. 14 */ 14 * 15 * Copyright (c) 1999-2002 knut st. osmundsen (bird@anduin.net) 16 */ 17 signal on novalue name NoValueHandler 15 18 16 19 if (RxFuncQuery('SysLoadFuncs') = 1) then … … 288 291 return value(sVar,,'OS2ENVIRONMENT'); 289 292 293 /** 294 * No value handler 295 */ 296 NoValueHandler: 297 say 'NoValueHandler: line 'SIGL; 298 return 0; 299  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  