From bf71ec3e4e5003f08729b11fc89d58a8f256ac35 Mon Sep 17 00:00:00 2001 From: Ian C Date: Thu, 29 Sep 2016 09:23:48 +0000 Subject: Added mkthumbs script. --- mkthumbs.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 mkthumbs.sh (limited to 'mkthumbs.sh') diff --git a/mkthumbs.sh b/mkthumbs.sh new file mode 100755 index 0000000..265a935 --- /dev/null +++ b/mkthumbs.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +for i in $* ; do + convert $i -auto-orient -strip $i.jpg + convert $i.jpg -resize 300x300 $i.gif + rm $i.jpg +done -- cgit v1.2.3