GITLAB

에프에이리눅스 / 1611_0007_prime_oven

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • 1611_0007_prime_oven
  • app
  • gui
  • strip-image.sh
  • 2e96327a8   color profile 삭제하는 스크립트 추가 Browse Code »
    김민수
    2017-04-14 12:10:39 +0900  
strip-image.sh 239 Bytes
edit raw blame history
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/bin/sh

CONVERT_CHECK=`convert -version`
if [ $? -ne 0 ]
then
  echo ""
  echo "INSTALL imagemagick"
  echo ""
  echo "  sudo apt-get install imagemagick"
  exit 1
fi


find oven_control/images -name *.png -exec convert {} -strip {} \;