Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # Аккуратнее! Эта версия заменяет все файлы, с которыми работает!
- if [[ -n "$1" ]]; then
- echo "cd to $1"
- cd $1
- fi
- for image_file in *.png ; do
- convert "$image_file" -alpha set -background none -scale 100%x173.3% -rotate -45 -trim "$image_file";
- done
Advertisement
Add Comment
Please, Sign In to add comment