Files
2018-08-26 01:21:45 -07:00

16 lines
349 B
Bash
Executable File

#!/bin/zsh
# File: down1.sh
# Date: Sat Dec 20 17:53:23 2014 +0800
# Author: Yuxin Wu
# Download 105 tencent smiley
for i in {0..104}; do
size=$(wc -c "$i.png" 2>/dev/null | cut -f 1 -d ' ')
if [[ -n "$size" && $size -ge 0 ]]; then
echo "File $i Already There!"
else
wget https://wx.qq.com/en_US/htmledition/images/qqface/$i.png &
fi
done