This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const boolean = require( 'boolean' ); | |
... | |
// look at object-transmute as a helper for implementing this | |
parameterizer( [ { | |
inputs: [ 'limit', 'max' ], | |
output: 'limit', | |
default: 10, | |
min: 1, | |
max: 100, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM enabledelayedexpansion allows variable reuse in the loops below | |
setlocal enabledelayedexpansion | |
@echo off | |
REM loop over a list of programs defined in strings as: | |
REM | |
REM <program path>[|<cwd>[|<override command>]] | |
REM | |
REM program path - the path to program you want to run |
OlderNewer