1234567891011121314151617 |
- #!/bin/bash
- while true; do
- # Start the Python script
- python irc_spambot.py &
- # Wait 60 seconds
- sleep 20
- # Kill the Python script
- killall python
- # or pkill -9 python aichk shbah lhakem
- # #Optional (do it once an hour)
- sleep 60
- done
|