Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_vendor_omni
/
d7af60119c4b6e224e8fc296d5e8b45dbf6b04e1
/
.
/
prebuilt
/
wallpapers
/
create_thumbs.sh
blob: 03cf599fa468a033279ca815a6f4931189403702 [
file
] [
log
] [
blame
]
#!/bin/sh
if
[
!
-
d
"thumbs"
];
then
mkdir
"thumbs"
cp json
.
php
"thumbs"
fi
for
file
in
`ls *.png`
do
convert $file
-
resize
300
"thumbs/$file"
done
for
file
in
`ls *.jpg`
do
convert $file
-
resize
300
"thumbs/$file"
done