The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/bin/bash

export SLEEP_TIME=${1:-10}

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