zoukankan      html  css  js  c++  java
  • 01-01基于SHELL的数据分析


    #!/usr/bin/env bash

    for year in /root/Downloads/data/all/*

    do
    echo -ne `basename $year .gz`" "
    gunzip -c $year |
    awk '{ temp = substr($0, 88, 5) + 0;
          q = substr($0, 93, 1);
          if (temp != 9999 && q ~ /[01459]/ && temp > max) max = temp }
    END { print max }`
    done

    #!/usr/bin/env bash
    for year in all/*
    do
       echo -ne `basename $year .gz`" "
       gunzip -c $year |
         awk '{ temp = substr($0, 88, 5) + 0;
                q = substr($0, 93, 1);
                if (temp !=9999 && q ~ /[01459]/ && temp > max) max = temp }
              END { print max }'
    done

  • 相关阅读:
    第九章
    第十章
    第八章
    第七章
    第六章
    第五章
    第四章
    第三章
    第二章
    第一章
  • 原文地址:https://www.cnblogs.com/gispathfinder/p/9270876.html
Copyright © 2011-2022 走看看