#!/bin/bash
DELAY=$1

#make sure DELAY is an integer > 0
if [ "$DELAY" -gt 0 ] ; then
        TMOUT=$DELAY    # Prompt times out at X seconds.
        echo "Hit Enter to skip delay and continue now"
        read whatever
else
        echo skipping gnc-delay
fi


