Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.14 KB | None | 0 0
  1. #! /bin/bash
  2.  
  3. counter=0
  4.  
  5. while [[ $counter < 20 ]]
  6. do
  7.     echo -e "\n"
  8.     date +%B
  9.     sleep 5
  10.     counter=$[counter + 1]
  11. done
  12.  
  13. exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement