Cjpeg Nov 25th, 2011 | Comments 출력 재지정 $ cjpeg image.gif > image.jpg 실습 #!/bin/sh for image in * .gif do cjpeg $image > ${image%%gif}jpg done