Skip to content

Instantly share code, notes, and snippets.

@wwwins
Created March 8, 2019 08:47
Show Gist options
  • Save wwwins/c088dc18856939fb642ec2b7af140dc6 to your computer and use it in GitHub Desktop.
Save wwwins/c088dc18856939fb642ec2b7af140dc6 to your computer and use it in GitHub Desktop.
Random sleep 0.x sec in shell script
#!/bin/sh
sleep $(awk 'BEGIN { "date +%N" | getline seed; srand(seed); print rand(); }')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment