Bootstrap

常用Shell脚本小工具

日期循环
#!/bin/sh

end="20201010"
st="20200901"

while [ $st -le $end ];
do
st_format=`date -d $
;