forked from Jones/anagram
5 lines
333 B
Bash
Executable file
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
|