Advertisement
sandervanvugt

Untitled

Jun 28th, 2021
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. COUNTER=$1
  4. COUNTER=$(( COUNTER * 60 ))
  5.  
  6. while true
  7. do
  8. echo $COUNTER seconds remaining in break
  9. COUNTER=$(( COUNTER - 1 ))
  10. sleep 1
  11. done
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement