Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- while [ 1 -eq 1 ] ; do
- wget -O /dev/null http://localhost:9981/play/stream/channel/25fe18687e0bf68cbeab600261469bbb &
- P=$!
- sleep 5
- kill -9 $P
- sleep 1
- wget -O /dev/null http://localhost:9981/play/stream/channel/13c89b59d75d39d8ccc084451d59a850 &
- P=$!
- sleep 5
- kill -9 $P
- sleep 1
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement