手机
当前位置:查字典教程网 >脚本专栏 >linuxshell >消耗CPU资源的shell脚本
消耗CPU资源的shell脚本
摘要:复制代码代码如下:#!/bin/sh#filenamekillcpu.shif[$#!=1];thenecho"USAGE:$0"exit1...

复制代码 代码如下:

#! /bin/sh

# filename killcpu.sh

if [ $# != 1 ] ; then

echo "USAGE: $0 <CPUs>"

exit 1;

fi

for i in `seq $1`

do

echo -ne "

i=0;

while true

do

i=i+1;

done" | /bin/sh &

pid_array[$i]=$! ;

done

for i in "${pid_array[@]}"; do

echo 'kill ' $i ';';

done

使用方法很简单,参数3表示消耗3颗CPU的资源,运行后,会有一堆 kill 命令,方便 kill 进程:

复制代码 代码如下:

[root@test02 ~]# ./killcpu.sh 3

kill 30104 ;

kill 30106 ;

kill 30108 ;

[root@test02 ~]# top

top - 15:27:31 up 264 days, 23:39, 4 users, load average: 0.86, 0.25, 0.19

Tasks: 185 total, 5 running, 180 sleeping, 0 stopped, 0 zombie

Cpu0 : 100.0% us, 0.0% sy, 0.0% ni, 0.0% id, 0.0% wa, 0.0% hi, 0.0% si

Cpu1 : 0.0% us, 0.0% sy, 0.0% ni, 100.0% id, 0.0% wa, 0.0% hi, 0.0% si

Cpu2 : 100.0% us, 0.0% sy, 0.0% ni, 0.0% id, 0.0% wa, 0.0% hi, 0.0% si

Cpu3 : 100.0% us, 0.0% sy, 0.0% ni, 0.0% id, 0.0% wa, 0.0% hi, 0.0% si

Mem: 8165004k total, 8095880k used, 69124k free, 53672k buffers

Swap: 2031608k total, 103548k used, 1928060k free, 6801364k cached

【消耗CPU资源的shell脚本】相关文章:

自动重启服务的shell脚本代码

获取同一网段下所有机器MAC地址的shell脚本

判断文件是否存在的shell脚本代码

使用iconv批量改变文件编码的shell脚本

监控网站是否可以正常打开的Shell脚本分享

备份网站内容的shell脚本代码

提取oralce当天的alert log的shell脚本代码

ssh expect自动登录的脚本代码

分享个简易版Linux服务器初始化Shell脚本

后台实时分流文件的shell脚本

精品推荐
分类导航