Create tool to remove the unnescessary folders

This commit is contained in:
Erik Foris 2021-10-24 13:42:25 +00:00
parent 099d2c641e
commit 6bc2cc8216

7
removeFolder Normal file
View File

@ -0,0 +1,7 @@
#!/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