summaryrefslogtreecommitdiffstats
path: root/kill.py
diff options
context:
space:
mode:
Diffstat (limited to 'kill.py')
-rw-r--r--kill.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/kill.py b/kill.py
new file mode 100644
index 0000000..acb236e
--- /dev/null
+++ b/kill.py
@@ -0,0 +1,5 @@
1import os
2
3with open("./pids.txt", "r") as f:
4 for line in f:
5 os.system("sudo kill " + line)