28我试图制作一个脚本,将图像源从普通链接转换为 html 文件中的 base64 编码。但是有一个问题:有时,sed 告诉我
script.sh:第 25 行:/bin/sed:参数列表太长
这是代码:
#!/bin/bash
# usage: ./script.sh file.html
mkdir images_temp
for i in `sed -n '/<img/s/.*src="\([^"]*\)".*/\1/p' $1`;
do echo "######### download the image";
wget -P images_temp/ $i;
#echo "######### convert the image for size saving";
#convert -quality 70 `echo ${i##*/}` `echo ${i##*/}`.temp;
#echo "######### rename temp image";
#rm `echo ${i##*/}` && mv `echo ${i##*/}`.temp `echo ${i##*/}`;
echo "######### encode in base64";
k="`echo "data:image/png;base64,"`$(base64 -w 0 images_temp/`echo ${i##*/}`)";
echo "######### deletion of images_temp pictures";
rm images_temp/*;
echo "######### remplace string in html";
sed -e "s|$i|$k|" $1 > temp.html;
echo "######### remplace final file";
rm -rf $1 && mv temp.html $1;
sleep 5;
done;
我认为当图像大于 ~128ko 时,$k 参数对于 sed 来说太长了;sed 无法处理它。
我如何使它工作?
先感谢您 !
PS1:对于非常丑陋的代码感到抱歉
PS2:或者我如何在 python 中做到这一点?PHP ? 我开了!