Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / scripts / opensim / kill_opensims.sh
diff --git a/scripts/opensim/kill_opensims.sh b/scripts/opensim/kill_opensims.sh
new file mode 100644 (file)
index 0000000..243523c
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
+
+sep
+date
+echo
+echo zapping all the mono tasks...
+procs=$(psfind mono)
+echo processes marked for death: $procs
+for i in $procs; do
+  kill $i
+done
+sep
+echo here are the mono processes after zapping:
+psa mono
+sep
+
+