blob: 1f3f02e7776f28f951637d7c79399f1ff9e99864 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/bash
while :
do
echo "Loading manachat (abort with CTRL+C)"
# Increase nice number in order to be the last served by kernel
nice -n 19 python simple.py
sleep 60
done
|