Changeset c03f8a5 for src/compdic
- Timestamp:
- 01/12/15 19:08:07 (10 years ago)
- Branches:
- master
- Parents:
- 854bece
- git-author:
- Tomasz Obrebski <obrebski@…> (01/12/15 19:08:07)
- git-committer:
- Tomasz Obrebski <obrebski@…> (01/12/15 19:08:07)
- Location:
- src/compdic
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/compdic/Makefile
rf600a02 rc03f8a5 23 23 install -m 0755 compdic-fst-to-bin $(BIN_DIR) 24 24 25 install -m 0755 canonize $(BIN_DIR) 25 26 install -m 0755 fsm2aut $(BIN_DIR) 26 27 install -m 0755 aut2fsa $(BIN_DIR) … … 42 43 rm $(BIN_DIR)/aut2fsa 43 44 rm $(BIN_DIR)/lst2fstext 45 rm $(BIN_DIR)/canonize 44 46 endif 45 47 -
src/compdic/compdic
r519eaf5 rc03f8a5 1 1 #!/bin/bash 2 3 echo `basename $0` $@ 2 4 3 5 no_of_parts=0 … … 37 39 38 40 echo number of parts: $no_of_parts 39 40 41 41 42 tempdir=`mktemp -d /tmp/compdic.XXXXXX` -
src/compdic/compdic-update
r555c7f8 rc03f8a5 2 2 3 3 . /etc/utt/compdic.conf 4 5 4 6 5 while [ $# -gt 2 ] … … 28 27 echo "where" 29 28 echo " <dictionary-home-dir> - dictionary home directory" 30 echo " <dictionary-name> - dictionary name "29 echo " <dictionary-name> - dictionary name (without extension)" 31 30 echo " <difference> - diff format file containing paths to be added/removed from dictionary" 32 31 exit 0 -
src/compdic/compdic-update-fst
r555c7f8 rc03f8a5 1 1 #! /bin/bash 2 3 set -e 2 4 3 5 if [ $# -lt 2 ] … … 34 36 echo updating $dict ... 35 37 38 if ! (( `cat $dicminus $dicplus | wc -l` )) 39 then 40 echo "Empty diff." 41 exit 1 42 fi 43 36 44 if (( `cat $dicminus | wc -l` )) 37 45 then
Note: See TracChangeset
for help on using the changeset viewer.