blob: 5d6ee18a11216c6c4308db58b77f2fad44cc4041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# See COPYING file for copyright and license details.
test $# -ne 1 && echo "usage: $0 bookid" && exit
getgbook -p $1 2>/dev/null | while read i
do
code=`echo $i|awk '{print $1}'`
num=`echo $i|awk '{print $2}'`
test -n "$num" && num=`printf '%04d' $num` || num=$code
test -f $num.png || echo $code | getgbook $1
done
|