码迷,mamicode.com
首页 > 其他好文 > 详细

usage.sh

时间:2014-12-05 19:24:59      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:sp   on   2014   bs   ad   as   line   nbsp   res   

#########################################################################
# File Name: usage.sh
# Author:
# mail:
# Created Time: 2014年12月05日 星期五 15时36分52秒
#########################################################################
#!/bin/bash

if [ -z "$1" ];then
    echo -e "Usage:\n\t${0##*/} <bugreport file or dumpstate file> \n"
    exit 1
fi

echo -e "\n To find the result in $1_result.txt \n"
:> $1_result.txt
:> $1_tmp

#grep  ‘\[K\]‘ $1 | grep ‘%‘ | while read line;
grep -A 5 "CPU Usage" $1 | grep "%" | while read line;
    
    do
        tmpstr1=${line##*]}
        echo $tmpstr1 >> $1_tmp
    done;

cat $1_tmp | sort -n -r -k 1 | awk ‘{print $1 " \t"  $3 }‘ > $1_result.txt

rm $1_tmp





usage.sh

标签:sp   on   2014   bs   ad   as   line   nbsp   res   

原文地址:http://blog.csdn.net/guan506713512/article/details/41750705

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