Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- d=973
- convert "./book"$d"/page-1" "./book"$d"/book.pdf"
- for i in `seq 2 240`;
- do
- convert "./book"$d"/book.pdf" "./book"$d"/page-"$i "./book"$d"/book.pdf"
- echo "Converted "$i
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement