====== Sleep ====== **General Information** Sleep makes the calling thread pause for a specified number of seconds. ---- ====== Sleep For a Random Time ====== Sleep for a random time from 1 - 300 seconds (up to 5 mins). sleep $[ ($RANDOM % 300) + 1 ]s ----