码迷,mamicode.com
首页 > 系统相关 > 详细

linux下模拟CPU占用100%小程序

时间:2016-09-30 20:42:51      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:

在做一个测试时,需要模拟服务器CPU占用满的情况,在查阅相关资料后,发现网上程序不太好用,

原文在这:http://www.2cto.com/os/201304/202068.html

优化后如下:

#! /bin/sh 
# filename killcpu.sh
if [ $# -ne 1 ] ; then
  echo "USAGE: $0 <CPUs>|stop"
  exit 1;
fi

stop()
{
 while read LINE
  do
    kill -9 $LINE
    echo "kill $LINE sucessfull"
  done < pid.txt
 cat /dev/null > pid.txt
}

start()
{
  echo "u want to cpus is: "$1
  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 pid is:  $i ;;
  echo $i >> pid.txt
done
}

case $1 in
   stop)
    stop
  ;;
   *)
   start $1
;;
esac

运行方式:

启动:./killcpu.sh 1

停止:killcpu.sh stop

linux下模拟CPU占用100%小程序

标签:

原文地址:http://www.cnblogs.com/landhu/p/5924548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!