summaryrefslogtreecommitdiffstats
path: root/kill.py
diff options
context:
space:
mode:
authorJoshua Bakita <jbakita@cs.unc.edu>2020-11-05 20:55:02 -0500
committerJoshua Bakita <jbakita@cs.unc.edu>2020-11-05 20:55:02 -0500
commit30e6b4765a310a1589cb56683dcbb4a0e8caee28 (patch)
tree4ea1d80af0fcbce4506cac2aa099e4e3b42b4d2c /kill.py
parent47da00d019b27772cb6009a07ad3fc52aaf2b15f (diff)
Small scripting cleanups
- Add a unified runner script for DIS - Remove explicit case study termination script (do `kill ${cat pids.txt}` instead) - Auto-create bin directories for TACLe - Add the python cache directory to the gitignore - Tweak input path representation in benchmark name files
Diffstat (limited to 'kill.py')
-rw-r--r--kill.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/kill.py b/kill.py
deleted file mode 100644
index acb236e..0000000
--- a/kill.py
+++ /dev/null
@@ -1,5 +0,0 @@
1import os
2
3with open("./pids.txt", "r") as f:
4 for line in f:
5 os.system("sudo kill " + line)