Mercurial > dotfiles
annotate unixSoft/otherbin/distnoted-reaper.sh @ 480:4c5814d3cfd8
afcopy: some enhancements from Bryan's dotfiles
This makes `afcopy` able to drop things in the clipboard over ssh. Wild stuff.
See
https://bitbucket.org/bcmills/dotfiles/src/101956eeb90160f1d225ae23c8e6566c9df91c5c/bin/clip?at=default&fileviewer=file-view-default
for some details.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Thu, 14 Mar 2019 10:38:49 -0400 |
parents | 57876a8a8165 |
children |
rev | line source |
---|---|
417
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
1 #!/bin/sh |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
2 # |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
3 # check for runaway distnoted, kill if necessary |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
4 # |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
5 PATH=/bin:/usr/bin |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
6 export PATH |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
7 |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
8 ps -reo '%cpu,uid,pid,command' | |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
9 awk -v UID=$UID ' |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
10 /distnoted agent$/ && $1 > 100.0 && $2 == UID { |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
11 system("kill -9 " $3) |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
12 } |
57876a8a8165
distnoted-reaper.sh: new script to clean up a runaway distnoted
Augie Fackler <raf@durin42.com>
parents:
diff
changeset
|
13 ' |