summaryrefslogtreecommitdiffstats
path: root/kill.py
blob: acb236ea58c4301dac71a807dbbcafb2b21d0b07 (plain) (blame)
1
2
3
4
5
import os

with open("./pids.txt", "r") as f:
    for line in f:
        os.system("sudo kill " + line)