8 lines
147 B
Plaintext
8 lines
147 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
for i in {0..261} #Edit acording to the number of pagees in your book
|
||
|
do
|
||
|
mv page_"$i"/Scale4.png ./"$i".png
|
||
|
rm -rf page_"$i"
|
||
|
done
|