jpegtran整个目录(jpegtran whole directory)

2019-08-19 20:18发布

我想从一个命令行优化与JPG图片的整个测试文件夹。 我发现这一点,但它不工作:

cd /home/site/html/update/test/
find . -exec jpegtran -optimize "{}" "{}.opti.jpg" "{}" \;

我想覆盖现有的图像。

建议?

回答:

find /img/path -name "*.jpg" -type f -exec jpegtran -copy none -optimize -outfile {} {} \; 

Answer 1:

回答:

find /img/path -name "*.jpg" -type f -exec jpegtran -copy none -optimize -outfile {} {} \;


文章来源: jpegtran whole directory