#!/bin/sh

## Set a variable [maintained as a file] within the temporary directory.
## On entry: $1 = name
##           $2 = value

functmpSet() {
	echo "$2" > $TEMP_DIR/$1
}
