sh 批量mozjpeg优化器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 批量mozjpeg优化器相关的知识,希望对你有一定的参考价值。

#! /bin/sh

#this is where your files will be put
mkdir originals

# I run mozjpeg for everyfile in this dir, adding the suffix .tmp, and move the original file in /originals
for f in ./*.jpg;
do
mozjpeg -optimize -outfile $f.tmp  $f;
mv $f originals/$f;
done

# fir evry .tmp i rename it without the extension,
for f in ./*.tmp;
do
mv $f "${f%.*}"
done

以上是关于sh 批量mozjpeg优化器的主要内容,如果未能解决你的问题,请参考以下文章

常见优化器

OGG运维优化脚本-信息修改类--批量取消注释

OGG运维优化脚本-信息修改类--批量注释

OGG运维优化脚本-查询维护类--批量查询

反向传播常用优化器

tensorflow中的优化器