new-words

annotate misc/notes2anki.pl @ 67:87bb1c5e6616

added de script to misc/
author Igor Chubin <igor@chub.in>
date Wed Mar 28 15:54:30 2012 +0200 (2012-03-28)
parents
children
rev   line source
igor@58 1 while(<>) {
igor@58 2 s/\@\S*//;
igor@58 3 s/;/,/g;
igor@58 4 my ($word, $notes) = split(/\s+/, $_, 2);
igor@58 5 if ($notes) {
igor@58 6 print $word," ; ", $notes;
igor@58 7 }
igor@58 8 }