Ciro Santilli OurBigBook.com  Sponsor 中国独裁统治 China Dictatorship 新疆改造中心、六四事件、法轮功、郝海东、709大抓捕、2015巴拿马文件 邓家贵、低端人口、西藏骚乱
cia-2010-covert-communication-websites/hupo-zip.sh
#!/usr/bin/env bash
set -eu
script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
indir="${script_dir}/tmp/merge"
outdir=tmp/hupo-zip
rm -rf "$outdir"
mkdir -p "$outdir"
cd "$outdir"
from="${1:-2011}"
to="${2:-2099}"
ls -1 "$indir" | awk -F- '{ print $1 }' | uniq | while IFS= read -r year; do
  if [ "$year" -ge "$from" ] && [ "$year"  -le "$to" ]; then
    echo $year
    ln -s "$indir" "$year"
    zip -r "${year}.zip" "$year/$year-"*
    rm "$year"
  fi
done