[BACK]Return to mkdict.sh CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / texi2mdoc / afl

Diff for /texi2mdoc/afl/mkdict.sh between version 1.1 and 1.2

version 1.1, 2015/02/18 16:37:25 version 1.2, 2015/02/19 16:15:18
Line 2 
Line 2 
   
 rm -f dict/*  rm -f dict/*
   
 for f in `cat words`  sed -n '/TEXICMD__BEGIN/,/TEXICMD__END/p' ../main.c | \
 do          tail -n +2 | \
         printf "$f" > dict/$f          sed '$d' | \
 done          awk '{print $3}' | \
           sed -e 's!^\"!!' -e 's!\",$!!' | \
           while read ln ; do [ ${#ln} -gt 1 ] && printf "$ln" >"dict/$ln" ; done

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

CVSweb