annotate unixSoft/otherbin/distnoted-reaper.sh @ 491:4b2472372fad

mcfly: move binding to ^T instead of ^R I've found some bugs in mcfly's handling of multi-line history entries. I still think it's a useful tool, just maybe less than I was hoping for now...
author Augie Fackler <raf@durin42.com>
date Wed, 01 Jul 2020 13:33:46 -0400
parents 57876a8a8165
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 '