Guest User

Untitled

a guest
Jan 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!/bin/bash
  2. # loop checking for a file, if the file exists exit
  3.  
  4. for (( ; ; ))
  5. do
  6. if [ -f ~/aah.txt ]; then
  7. #echo "File Found!"
  8. exit
  9. fi
  10. sleep 5
  11. #echo "Staying Alive"
Add Comment
Please, Sign In to add comment