Koen G > 29-06-2020, 10:59 AM
doranchak > 29-06-2020, 11:06 AM
(29-06-2020, 10:59 AM)Koen G Wrote: You are not allowed to view links. Register or Login to view.I wonder how many anagrams are left in Voynichese if we eliminate very rare attestations?Is there a vord dictionary with occurrence frequencies?
doranchak > 29-06-2020, 11:39 AM
(29-06-2020, 11:16 AM)bi3mw Wrote: You are not allowed to view links. Register or Login to view.You mean something like this ?
Torsten > 29-06-2020, 12:42 PM
Koen G > 29-06-2020, 12:46 PM
ReneZ > 29-06-2020, 12:49 PM
bi3mw > 29-06-2020, 01:14 PM
(29-06-2020, 12:49 PM)ReneZ Wrote: You are not allowed to view links. Register or Login to view.I have all the files available, but not the tool to check for anagrams...
#!/bin/bash
for x in {a..z}
do
gawk -f anagram.awk dictionary.txt | grep ^${x} > ${x}.txt
cat ${x}.txt >> all.txt
done
awk '{ print NF, $0 }' all.txt > all2.txt
sort all2.txt > all3.txt
Anton > 29-06-2020, 01:39 PM