The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/bin/bash

export SLEEP_TIME=${1:-10}

echo "1..2"
echo "ok - sleep"
sleep $SLEEP_TIME
echo "ok - wake up"