×
Digits.sh is a Bourne Shell script that helps your custom shell scripts determine how many digits is supplied in the argument. When a valid number is entered on ...
ContainsRegEx.cmd is a Windows batch program that can help determine if a specified string contains a specified regular expression. ContainsRegEx.cmd outputs 1 ...
The new script used this script in a loop. When the output of the command is an empty string, the %OutputVariable% doesn't get set to an empty string (strange).
This "basename.bat" is a Windows batch program that performs the same function as as the UNIX "basename" command. And that function is to strip the parent ...
"DriveLabel.bat" is a batch file that returns the label given a drive letter. "DriveLetter.bat" takes advantage of the following batch files, which are also ...
DirectoryHasFile.sh is a Bourne Shell script that helps your custom shell scripts determine whether the specified directory contains any files. This script ...
IsOdd.sh determines whether the number you specify on the command-line is an odd number. If so, it outputs an '1', otherwise it outputs a '0'. IsOdd.
bat (GPL). SetNumberOfArguments.bat is a Windows batch program that counts how many parameters are on the command-line. Then it sets a batch variable with ...
This "dirname.bat" is a Windows batch program that performs the same function as as the UNIX "dirname" command. And that function is to strip the child name ...
This is a very simple script that tells you whether the argument contains the space character or not. It outputs 1 for yes and 0 for no. ArgHasSpace.sh is ...