当前位置: 技术问答>linux和unix
script问题,怎样以文件中的每一行作为输入?
来源: 互联网 发布时间:2016-11-03
本文导语: ./cpp/a.out ./cpp/CoolDog.PNG ./cpp/as.c ./cpp/test/13.jpg ./cpp/test/11.png ./cpp/test/134.jpg ./cpp/test/2.jpg ./cpp/test/23.jpg ./cpp/test/33.JPG ./cpp/test/1343.jpg ./cpp/test/eo8826.psd ./cpp/test/at3.jpg ./cpp/test/helo.jpg ./cpp/test/12.png ./cpp/test/1.png ./cpp/test/-strip ./...
./cpp/a.out
./cpp/CoolDog.PNG
./cpp/as.c
./cpp/test/13.jpg
./cpp/test/11.png
./cpp/test/134.jpg
./cpp/test/2.jpg
./cpp/test/23.jpg
./cpp/test/33.JPG
./cpp/test/1343.jpg
./cpp/test/eo8826.psd
./cpp/test/at3.jpg
./cpp/test/helo.jpg
./cpp/test/12.png
./cpp/test/1.png
./cpp/test/-strip
./cpp/test/tt.jpg
./cpp/test/22.jpg
./cpp/test/a.psd
./cpp/test/png_small.jpg
想要识别其中所有的jpg格式的文件 再将其每一行作为输入,
用作
convert "logo.jpg(输入)" -strip -resize 535x535 -units PixelsPerInch -density 72 -quality 60 "logo.jpg(输出)"
这条语句的输入,文件的输出名与输入名相同。。。
应该如何做?
./cpp/CoolDog.PNG
./cpp/as.c
./cpp/test/13.jpg
./cpp/test/11.png
./cpp/test/134.jpg
./cpp/test/2.jpg
./cpp/test/23.jpg
./cpp/test/33.JPG
./cpp/test/1343.jpg
./cpp/test/eo8826.psd
./cpp/test/at3.jpg
./cpp/test/helo.jpg
./cpp/test/12.png
./cpp/test/1.png
./cpp/test/-strip
./cpp/test/tt.jpg
./cpp/test/22.jpg
./cpp/test/a.psd
./cpp/test/png_small.jpg
想要识别其中所有的jpg格式的文件 再将其每一行作为输入,
用作
convert "logo.jpg(输入)" -strip -resize 535x535 -units PixelsPerInch -density 72 -quality 60 "logo.jpg(输出)"
这条语句的输入,文件的输出名与输入名相同。。。
应该如何做?
|
for i in `ls -R *.jpg`
do
convert "$i.jpg(输入)" -strip -resize 535x535 -units PixelsPerInch -density 72 -quality 60 "logo.jpg
done
do
convert "$i.jpg(输入)" -strip -resize 535x535 -units PixelsPerInch -density 72 -quality 60 "logo.jpg
done
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。