some cleanups

整理文件夹,按首字母分类
This commit is contained in:
CuteDress
2024-02-07 12:16:20 +08:00
parent 1c7a79f719
commit 26049bb44b
2679 changed files with 470 additions and 509 deletions

View File

@ -0,0 +1,2 @@
# 在原始高清文件夹下运行,压制图片
for file in *.jpg; do echo $file ${file%%.*}.jpg; convert -resize 1920x1920 -quality 80% $file ../${file%%.*}.jpg; done