Last active
August 23, 2016 19:50
-
-
Save horvatha/237ee8d4ec5914f21a3f7685f27eef21 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# használat: kepatalakito fájlnév... | |
# példa: kepatalakito *.jpg | |
# Az argumentumként megadott jpg képfájlokat átalakítja (pl. más méretre). | |
# Készítette: Horváth Árpád http://harp.pythonanywhere.com | |
for i in "$@" | |
do | |
# Kiterjesztés és útvonal leszedése | |
name=`basename "$i" '.jpg'` # Leszedi a jpg kiterjesztést | |
echo A következő fájl neve $name. | |
# kétszeresére nagyít | |
convert -resize 200% "$i" "${name}_big.jpg" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment