help
        
      
      
        
  | Line |   | 
|---|
| 1 | #!/usr/bin/perl | 
|---|
| 2 |  | 
|---|
| 3 | #package:       UAM TExt Tools | 
|---|
| 4 | #component:     canonize | 
|---|
| 5 | #version:       1.0 | 
|---|
| 6 | #author:        Tomasz Obrebski | 
|---|
| 7 |  | 
|---|
| 8 | use lib "/usr/local/lib/utt"; | 
|---|
| 9 | use lib "$ENV{'HOME'}/.local/lib/utt"; | 
|---|
| 10 |  | 
|---|
| 11 | use strict; | 
|---|
| 12 | use Getopt::Long; | 
|---|
| 13 | use attr; | 
|---|
| 14 |  | 
|---|
| 15 |  | 
|---|
| 16 | my $help; | 
|---|
| 17 |  | 
|---|
| 18 | GetOptions("help|h" => \$help); | 
|---|
| 19 |  | 
|---|
| 20 | if($help) | 
|---|
| 21 | { | 
|---|
| 22 |     print <<'END' | 
|---|
| 23 |  | 
|---|
| 24 | Transforms syntactic categories to their canonical form. | 
|---|
| 25 |  | 
|---|
| 26 | Usage: canonize | 
|---|
| 27 |  | 
|---|
| 28 | Options: | 
|---|
| 29 |    --help -h                    Help. | 
|---|
| 30 |  | 
|---|
| 31 | END | 
|---|
| 32 | ; | 
|---|
| 33 |     exit 0; | 
|---|
| 34 | } | 
|---|
| 35 |  | 
|---|
| 36 | #$|=1; | 
|---|
| 37 |  | 
|---|
| 38 | my %tra; | 
|---|
| 39 |  | 
|---|
| 40 | while(<>) | 
|---|
| 41 | { | 
|---|
| 42 |     s/$attr::pos_re\/$attr::avlist_re/trans($&)/ge; | 
|---|
| 43 |     print; | 
|---|
| 44 | } | 
|---|
| 45 |  | 
|---|
| 46 | sub trans | 
|---|
| 47 | { | 
|---|
| 48 |     my $cat=shift; | 
|---|
| 49 |     exists($tra{$cat}) ? $tra{$cat} : ( $tra{$cat} = attr::canonize $cat ); | 
|---|
| 50 | } | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.