blob: 03cf599fa468a033279ca815a6f4931189403702 [file] [log] [blame]
maxwen94329062017-02-17 01:29:13 +01001#!/bin/sh
2
3if [ ! -d "thumbs" ]; then
4 mkdir "thumbs"
5 cp json.php "thumbs"
6fi
7
8for file in `ls *.png`
9do
10 convert $file -resize 300 "thumbs/$file"
11done
12
13for file in `ls *.jpg`
14do
15 convert $file -resize 300 "thumbs/$file"
16done