1. comm 对比两个已经排序的文件的不同

  2. echo 字符串A | grep -qiw 字符串B 比较两个字符串是否相同(不区分大小写)

  3. 循环日期

    以周为循环
    
    !/bin/bash
    
    begin_date="20160907"
     end_date="20170226"
    
    while [ "$begin_date" -le "$end_date" ];
     do
     year=${begin_date:0:4}
     week_of_year=$(date -d "$begin_date" +%W)
     echo $year, $week_of_year
     begin_date=$(date -d "${begin_date}+7days" +%Y%m%d)
     done
  4. todo