Files
wechat-dump/lib/static/smileys/down1.sh
T
2014-12-20 17:55:46 +08:00

16 lines
371 B
Bash
Executable File

#!/bin/zsh
# File: down1.sh
# Date: Sat Dec 20 17:53:23 2014 +0800
# Author: Yuxin Wu <[email protected]>
# 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