代码拉取完成,页面将自动刷新
#!/bin/bash
old_IFS=$IFS
IFS=$'\n'
rm -rf thumbs
mkdir thumbs
cd icons
num=`ls *.icns *.png|wc -l|tr -d ' '`
printf "### 点击小图标可跳转至ICNS原图 / Click on the thumbnail to access the ICNS file \n当前共有 ["$num"] 个图标 / Here are ["$num"] icons now \n**** \n\n" >> ../thumbs/thumbs.md
printf "### 点击文字链接可跳转至ICNS原图 / Click on the link to access the ICNS file \n当前共有 ["$num"] 个图标 / Here are ["$num"] icons now \n**** \n\n" >> ../thumbs/textlist.md
for i in `ls *.icns *.png`
do
sips -Z 128 -s format jpeg $i --out ../thumbs/${i%.*}.jpg
iconName=${i%.*}
urlName=$(echo ${i%.*}|sed 's/ /%20/g')
echo '<a href="../icons/'$i'"><img src="./'$urlName'.jpg" alt="'$iconName'" width="64" /></a>' >> ../thumbs/thumbs.md
echo '['$iconName'](../icons/'$urlName'.icns) ' >> ../thumbs/textlist.md
done
cd ..
sed -i "" '$d' README.md
echo '当前共有 ['$num'] 个图标 / Here are ['$num'] icons now' >> README.md
IFS=$old_IFS
git add *
read -p "请输入commit信息: " commit
git commit -m "$commit"
git push origin master
echo "已完成!"
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。