anagram/makedicts.sh

6 lines
333 B
Bash
Raw Normal View History

2024-12-31 06:45:00 +01:00
#!/bin/sh
aspell -d it dump master | grep -vi -P '^copyright[a-z]' | sed -e 's/\/.*$//' > italiano.txt
aspell -d it dump master | aspell -l it expand 4 | grep -vi -P '^copyright[a-z]' | grep -v "'" | sed -e 's/^[^ ]\+ //' -e 's/ .*//' > italiano_espanso.txt
aspell -d en dump master | grep -v "'" | sed -e 's/\/.*$//' > english.txt