new-words

view misc/notes2anki.pl @ 64:c3adf6452eda

lingvo-en-ru.pl script moved to misc/
author Igor Chubin <igor@chub.in>
date Sat Nov 12 14:03:54 2011 +0100 (2011-11-12)
parents
children
line source
1 while(<>) {
2 s/\@\S*//;
3 s/;/,/g;
4 my ($word, $notes) = split(/\s+/, $_, 2);
5 if ($notes) {
6 print $word," ; ", $notes;
7 }
8 }