projects
/
feisty_meow.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'dev' of feistymeow.org:feisty_meow into dev
[feisty_meow.git]
/
scripts
/
opensim
/
kill_opensims.sh
1
#!/bin/bash
2
3
source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
4
5
sep
6
date
7
echo
8
echo zapping all the mono tasks...
9
procs=$(psfind mono)
10
echo processes marked for death: $procs
11
for i in $procs; do
12
kill $i
13
done
14
sep
15
echo here are the mono processes after zapping:
16
psa mono
17
sep
18
19