Pádraig Brady wrote:
> sleep $(seq .1 .1 4 | head -n $(($RANDOM%40 +1)) | tail -n1)

Or more concisely using just coreutils logic:

sleep $(seq .1 .1 4 | shuf | head -n1)

cheers,
Pádraig.


Reply via email to