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