ReneZ > 28-10-2020, 11:34 AM
(23-10-2020, 04:29 PM)RobGea Wrote: You are not allowed to view links. Register or Login to view.(23-10-2020, 12:45 PM)Koen G Wrote: You are not allowed to view links. Register or Login to view.Does anyone happen to have separate text files for each folio?
I can make them from Takahashi ( they would be created from the lowercase version ) --You are not allowed to view links. Register or Login to view.
For Takahashi with capitals most individual pages can be found on his site --You are not allowed to view links. Register or Login to view.
For some other transcriptions you can ( if i understand the manual ) extract pages using IVTT ( a thread with some cmdline examples of IVTT would be nice )
foreach qq ( A B C D E F G H I J K L M N O Q S T )
ivtt +Q${qq} ZL.txt temp.txt >&/dev/null
foreach pp ( A B C D E F G H I J K L M N O P Q R S T U V W X )
ivtt -x8 +P${pp} temp.txt ${qq}${pp}.txt >&/dev/null
end
\rm temp.txt
end
ReneZ > 28-10-2020, 01:57 PM
ReneZ > 28-10-2020, 03:06 PM
ReneZ > 28-10-2020, 03:34 PM
bi3mw > 28-10-2020, 04:11 PM
#!/bin/csh
foreach qq ( A B C D E F G H I J K L M N O Q S T )
./ivtt +Q${qq} ZL.txt temp.txt >&/dev/null
foreach pp ( A B C D E F G H I J K L M N O P Q R S T U V W X )
./ivtt -x8 +P${pp} temp.txt ${qq}${pp}.txt >&/dev/null
end
\rm temp.txt
end
ReneZ > 28-10-2020, 05:06 PM
bi3mw > 28-10-2020, 05:23 PM
bi3mw > 28-10-2020, 06:27 PM
#!/bin/bash
for qq in A B C D E F G H I J K L M N O Q S T
do
./ivtt +Q${qq} ZL.txt temp.txt >&/dev/null
for pp in A B C D E F G H I J K L M N O P Q R S T U V W X
do
echo -en "\015\033[Kwrite ${qq}${pp}.txt"
./ivtt -x8 +P${pp} temp.txt ${qq}${pp}.txt >&/dev/null
done
rm temp.txt
done
echo
echo done
find . -name '*.txt' -type f -empty -delete
(28-10-2020, 11:34 AM)ReneZ Wrote: You are not allowed to view links. Register or Login to view.If a page does not exist, the file will be created but will be empty. It could be removed with another line in the script.I have added a line to delete the empty text files. There remain 227 files.
(28-10-2020, 03:34 PM)ReneZ Wrote: You are not allowed to view links. Register or Login to view.One might want to see something happening when executing a script like this, which will take some time to complete, so one "echo" command in the outer loop might be nice.Echo is inserted ( pretty fast ).