_bash.sh 271 B

1234567891011121314151617
  1. #!/bin/bash
  2. while true; do
  3. # Start the Python script
  4. python irc_spambot.py &
  5. # Wait 60 seconds
  6. sleep 20
  7. # Kill the Python script
  8. killall python
  9. # or pkill -9 python aichk shbah lhakem
  10. # #Optional (do it once an hour)
  11. sleep 60
  12. done