Mercurial > dotfiles
annotate unixSoft/otherbin/distnoted-reaper.sh @ 526:852565046ed0 default tip
zsh: fidget with screen/tmux message
This should speed things up very slightly by avoiding some `grep` action
in the common case of no detached screens/tmuxes.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Mon, 14 Nov 2022 11:02:35 -0500 |
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 ' |