Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. while [ 1 -eq 1 ] ; do
  4. wget -O /dev/null http://localhost:9981/play/stream/channel/25fe18687e0bf68cbeab600261469bbb &
  5. P=$!
  6. sleep 5
  7. kill -9 $P
  8. sleep 1
  9. wget -O /dev/null http://localhost:9981/play/stream/channel/13c89b59d75d39d8ccc084451d59a850 &
  10. P=$!
  11. sleep 5
  12. kill -9 $P
  13. sleep 1
  14. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement