shell 统计GMT0 时区的数据

Posted lavin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 统计GMT0 时区的数据相关的知识,希望对你有一定的参考价值。

和某个供应商核对数据,对方是GMT+0时区,我方报表默认北京时间,无法修改为GMT0,

对excel中按照小时级别的数据导出到excel处理,然后转为文本文件,shell转为GMT0进行统计:

前期处理:

先将时间转为"2016-05-01 00:08:00" 格式的数据,便于时间戳的比较。

去除无效的","和"$"符号,便于shell文本处理。

先解决一天的问题,然后循环调用脚本 解决多天的问题。

# for i in `seq  20160501 20160518`  ; do    sh tongji.sh "$i"; done
#!/bin/bash
#test.sh
zone=8
day=20160518
if [  $1 !=  " "  ]  ; then  
day=$1
fi

time_begin=`date -d "+$zone hour $day" +"%Y-%m-%d %H:%M:%S"`
time_end=`date -d "+$zone hour +1 day $day" +"%Y-%m-%d %H:%M:%S"`
echo "time_begin is:  $time_begin , time_end is $time_end"
filename="may-1-18-cost-imp.txt"
cat  "$filename"  |awk -F "\t"   {  
     if ($3>= ""$time_end"" || $3 < ""$time_begin"") {         
        next;
    }else {
          print $3 ,$15
    }
    if( $15 != "-" ){
        cost += $15
    }
    
    if( $7 != "-" ){
        impress += $7
    }
    

}END{
print    impress, cost

}

 

以上是关于shell 统计GMT0 时区的数据的主要内容,如果未能解决你的问题,请参考以下文章

Swift UTC 时区不是 UTC

服务器时间和时区错误引起的mysql数据统计出错

UNIX时间戳 UTC GMT time localtime

mysql_关于CST和GMT时区时间转换

代码片段:Shell脚本实现重复执行和多进程

网站统计-Piwik