Changeset 9109 for trunk/tools


Ignore:
Timestamp:
Aug 24, 2002, 6:29:06 AM (23 years ago)
Author:
bird
Message:

Added novalue signal handler.

Location:
trunk/tools/bin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/bin/DoDirs.cmd

    r9032 r9109  
    1 /* $Id: DoDirs.cmd,v 1.5 2002-08-20 04:07:11 bird Exp $
     1/* $Id: DoDirs.cmd,v 1.6 2002-08-24 04:29:06 bird Exp $
    22 *
    33 * Rexx script which executes a given command in each of the given
     
    1111 * Project Odin Software License can be found in LICENSE.TXT
    1212 */
     13signal on novalue name NoValueHandler
    1314
    1415parse arg '"'sDirs'" 'sCommand
     
    107108parse arg sVar
    108109return value(sVar,,'OS2ENVIRONMENT');
     110
     111/**
     112 * No value handler
     113 */
     114NoValueHandler:
     115    say 'NoValueHandler: line 'SIGL;
     116return 0;
     117
  • trunk/tools/bin/DoMakes.cmd

    r9032 r9109  
    1 /* $Id: DoMakes.cmd,v 1.2 2002-08-20 04:07:11 bird Exp $
     1/* $Id: DoMakes.cmd,v 1.3 2002-08-24 04:29:06 bird Exp $
    22 *
    33 * Rexx script which executes a given command with each of
     
    1010 * Project Odin Software License can be found in LICENSE.TXT
    1111 */
     12signal on novalue name NoValueHandler
    1213
    1314parse arg '"'sMakefiles'" 'sCommand
     
    9192return value(sVar,,'OS2ENVIRONMENT');
    9293
     94/**
     95 * No value handler
     96 */
     97NoValueHandler:
     98    say 'NoValueHandler: line 'SIGL;
     99return 0;
     100
  • trunk/tools/bin/DoWithDirs.cmd

    r9032 r9109  
    1 /* $Id: DoWithDirs.cmd,v 1.13 2002-08-20 04:07:11 bird Exp $
     1/* $Id: DoWithDirs.cmd,v 1.14 2002-08-24 04:29:06 bird Exp $
    22 *
    33 * Syntax: dowithdirs.cmd [-e<list of excludes>] [-c] [-i] [-l] [-r] <cmd with args...>
     
    1212 *            <tag> is a name of the lock.
    1313 *    -s      Skip locked directories in stead of stopping.
    14  */
     14 *
     15 * Copyright (c) 1999-2002 knut st. osmundsen (bird@anduin.net)
     16 */
     17signal on novalue name NoValueHandler
    1518
    1619if (RxFuncQuery('SysLoadFuncs') = 1) then
     
    288291return value(sVar,,'OS2ENVIRONMENT');
    289292
     293/**
     294 * No value handler
     295 */
     296NoValueHandler:
     297    say 'NoValueHandler: line 'SIGL;
     298return 0;
     299
Note: See TracChangeset for help on using the changeset viewer.