From 54f1032e22f556ccb77b5b7f800189309ec941d7 Mon Sep 17 00:00:00 2001 From: Leo Chan Date: Sat, 24 Oct 2020 13:18:05 -0400 Subject: Merge case study updates from sd-vbs branch --- kill.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 kill.py (limited to 'kill.py') diff --git a/kill.py b/kill.py new file mode 100644 index 0000000..acb236e --- /dev/null +++ b/kill.py @@ -0,0 +1,5 @@ +import os + +with open("./pids.txt", "r") as f: + for line in f: + os.system("sudo kill " + line) -- cgit v1.2.2