91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何編寫自動殺掉占用較多CPU資源的Shell腳本

發布時間:2021-09-30 15:10:37 來源:億速云 閱讀:127 作者:iii 欄目:開發技術

本篇內容主要講解“如何編寫自動殺掉占用較多CPU資源的Shell腳本”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何編寫自動殺掉占用較多CPU資源的Shell腳本”吧!

代碼如下:

#!/bin/bash

# March-13-2006
# CPUuse trigger script by Noel
#
# bash code to watch a running program's CPU usage.
# if it's above a set value, it will auto send an email.
# You will need to set a Cron job to run this script every xx minutes
#
# Set some needed things:
#
processToWatch="convert" # in my case I need to watch convert
emailAddress="root@host" # this is my main emailaddress
triggerValue=90 # if the CPU use is above 90% send an email. DO NOT USE a DOT or COMMA!
tempFileName=tmp-cpu # some name of the temp file for the ps, grep data

ps auxww | grep "$processToWatch" | grep -v grep > /tmp/$tempFileName
export LINE
(
read LINE
while [ -n "$LINE" ]
do
set $LINE
read LINE
if [ $(echo "$3" | sed -e 's/\.[0-9]*//g') -gt $triggerValue ]; then
mail -s "CPU message alert for: $processToWatch" $emailAddress <<-END
This is to inform you that the following process: $processToWatch with PID (Process ID) $2 is now using more than your preset $triggerValue value.

Process: $processToWatch is using: $3 of CPU power!
The command used is: $11
END
fi
done
)< /tmp/$tempFileName

到此,相信大家對“如何編寫自動殺掉占用較多CPU資源的Shell腳本”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

谷城县| 宜黄县| 黔西县| 曲沃县| 垫江县| 广南县| 汕头市| 方山县| 台北市| 邵东县| 昔阳县| 泸州市| 平乡县| 佛冈县| 宜川县| 安阳市| 定安县| 元氏县| 乌海市| 兴化市| 旌德县| 邵阳县| 惠州市| 舞钢市| 襄汾县| 屏东市| 晋宁县| 筠连县| 太湖县| 梅河口市| 额尔古纳市| 舒城县| 佳木斯市| 大安市| 隆化县| 光山县| 张家川| 丹棱县| 泗洪县| 防城港市| 清原|