Skip to content

Latest commit

 

History

History
22 lines (11 loc) · 302 Bytes

sleep.md

File metadata and controls

22 lines (11 loc) · 302 Bytes

Sleep

I learned from here

  • Shell script sleep examples
sleep .5 # Waits 0.5 second.

sleep 5  # Waits 5 seconds.

sleep 5s # Waits 5 seconds.

sleep 5m # Waits 5 minutes.

sleep 5h # Waits 5 hours.

sleep 5d # Waits 5 days.