Added script for removing letterbox borders

This commit is contained in:
Marcin Kurczewski 2013-10-30 23:02:18 +01:00
parent ea4c7fac6e
commit 86c811b0e7

View file

@ -0,0 +1,14 @@
#!/bin/sh
process () {
x="$1";
echo "$x";
convert "$x" -fuzz 5% -trim +repage tmp && mv tmp "$x"
}
while read x; do
process "$x";
done
for x in $@; do
process "$x";
done