Changeset 20b4e44 for app/src/compiledic
- Timestamp:
- 03/19/08 12:29:21 (17 years ago)
- Branches:
- master, help
- Children:
- 389de9a
- Parents:
- d593c5e
- git-author:
- pawelk <pawelk@…> (03/19/08 12:29:21)
- git-committer:
- pawelk <pawelk@…> (03/19/08 12:29:21)
- Location:
- app/src/compiledic
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
app/src/compiledic/compiledic
r25ae32e r20b4e44 1 1 #! /usr/bin/env perl 2 3 #package: UAM Text Tools 4 #component: compiledic 5 #version: 1.0 6 #author: Tomasz Obrebski 7 8 use strict; 9 use locale; 10 use File::HomeDir; 11 use File::Basename; 12 use File::Temp; 13 use Getopt::Long; 14 15 my $systemconfigfile=''; 16 my $userconfigfile=home()."/.utt/compiledic.conf"; 17 18 Getopt::Long::Configure('no_ignore_case_always'); 2 19 3 20 $symfile='~/.utt/pl/pl_PL.iso-8859-2.sym'; … … 7 24 $sclfile = $symfilenoext . '.scl'; 8 25 9 use locale;10 #use strict;11 12 26 ################################################## 13 27 $linesPerFile = 20000; 14 28 15 29 if (@ARGV < 1) { 16 print "usage: prep_user_dict.pldictionary_file\n";30 print "usage: ", basename($0), " dictionary_file\n"; 17 31 exit; 18 32 }
Note: See TracChangeset
for help on using the changeset viewer.