[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.3

version 1.1, 2015/02/18 16:37:25 version 1.3, 2015/02/28 00:03:21
Line 1 
Line 1 
 #! /bin/sh  #! /bin/sh
   
 rm -f dict/*  rm -rf dict
   mkdir 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.3

CVSweb