Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_vendor_omni
/
1b9cbf4391b921ea7e986b65d539e0213d6172d7
/
.
/
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