anagram/makedicts.sh
2024-12-31 06:45:00 +01:00

5 lines
333 B
Bash
Executable file

#!/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