Changes between Version 13 and Version 14 of UTT by example


Ignore:
Timestamp:
02/21/12 17:06:26 (13 years ago)
Author:
s316637
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UTT by example

    v13 v14  
    883883Description: 
    884884{{{ 
    885  
    886 }}} 
    887 Command: 
    888 {{{ 
    889  
    890 }}} 
    891 Output: 
    892 {{{ 
    893  
     885Match pattern 'lexeme(kot)'. Mark beginning (BOM) and end (EOM) of each matching. 
     886}}} 
     887Command: 
     888{{{ 
     889echo 'Ala ma kota. Ola ma kota. Bartosz ma psa.' | tok | lem -1 | mar -e 'lexeme(kot)' 
     890}}} 
     891Output: 
     892{{{ 
     8930000 03 W Ala 
     8940003 01 S _ 
     8950004 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     8960006 01 S _ 
     8970007 00 BOM * 
     8980007 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     8990011 00 EOM * 
     9000011 01 P . 
     9010012 01 S _ 
     9020013 03 W Ola 
     9030016 01 S _ 
     9040017 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     9050019 01 S _ 
     9060020 00 BOM * 
     9070020 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     9080024 00 EOM * 
     9090024 01 P . 
     9100025 01 S _ 
     9110026 07 W Bartosz lem:Bartosz,N/CnGpNs 
     9120033 01 S _ 
     9130034 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     9140036 01 S _ 
     9150037 03 W psa lem:pies,N/CaGaNs,N/CgGaNs 
     9160040 01 P . 
     9170041 01 S \n 
    894918}}} 
    895919 
     
    897921Description: 
    898922{{{ 
    899  
    900 }}} 
    901 Command: 
    902 {{{ 
    903  
    904 }}} 
    905 Output: 
    906 {{{ 
    907  
     923Match pattern 'lexeme(kot)'. Mark matching parts with MATCH tags (before and after any form of lexeme 'kot'). 
     924}}} 
     925Command: 
     926{{{ 
     927echo 'Ala ma kota. Ola ma kota. Bartosz ma psa.' | tok | lem -1 | mar -e '@MATCH lexeme(kot) @MATCH' 
     928}}} 
     929Output: 
     930{{{ 
     9310000 03 W Ala 
     9320003 01 S _ 
     9330004 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     9340006 01 S _ 
     9350007 00 MATCH * 
     9360007 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     9370011 00 MATCH * 
     9380011 01 P . 
     9390012 01 S _ 
     9400013 03 W Ola 
     9410016 01 S _ 
     9420017 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     9430019 01 S _ 
     9440020 00 MATCH * 
     9450020 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     9460024 00 MATCH * 
     9470024 01 P . 
     9480025 01 S _ 
     9490026 07 W Bartosz lem:Bartosz,N/CnGpNs 
     9500033 01 S _ 
     9510034 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     9520036 01 S _ 
     9530037 03 W psa lem:pies,N/CaGaNs,N/CgGaNs 
     9540040 01 P . 
     9550041 01 S \n 
    908956}}} 
    909957 
     
    911959Description: 
    912960{{{ 
    913  
    914 }}} 
    915 Command: 
    916 {{{ 
    917  
    918 }}} 
    919 Output: 
    920 {{{ 
    921  
     961Match pattern 'lexeme(kot)'. Mark matching parts with BEGINMATCH tags (only before any form of lexeme 'kot'). 
     962}}} 
     963Command: 
     964{{{ 
     965echo 'Ala ma kota. Ola ma kota.' | tok | lem -1 | mar -e '@BEGINMATCH lexeme(kot)' 
     966}}} 
     967Output: 
     968{{{ 
     9690000 03 W Ala 
     9700003 01 S _ 
     9710004 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     9720006 01 S _ 
     9730007 00 BEGINMATCH * 
     9740007 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     9750011 01 P . 
     9760012 01 S _ 
     9770013 03 W Ola 
     9780016 01 S _ 
     9790017 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     9800019 01 S _ 
     9810020 00 BEGINMATCH * 
     9820020 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     9830024 01 P . 
     9840025 01 S \n 
    922985}}} 
    923986 
     
    925988Description: 
    926989{{{ 
    927  
    928 }}} 
    929 Command: 
    930 {{{ 
    931  
    932 }}} 
    933 Output: 
    934 {{{ 
    935  
     990Match pattern 'lexeme(kot)'. Mark matching parts with ENDMATCH tags (only after any form of lexeme 'kot'). 
     991}}} 
     992Command: 
     993{{{ 
     994echo 'Ala ma kota. Ola ma kota.' | tok | lem -1 | mar -e 'lexeme(kot) @ENDMATCH' 
     995}}} 
     996Output: 
     997{{{ 
     9980000 03 W Ala 
     9990003 01 S _ 
     10000004 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     10010006 01 S _ 
     10020007 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     10030011 00 ENDMATCH * 
     10040011 01 P . 
     10050012 01 S _ 
     10060013 03 W Ola 
     10070016 01 S _ 
     10080017 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     10090019 01 S _ 
     10100020 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     10110024 00 ENDMATCH * 
     10120024 01 P . 
     10130025 01 S \n 
    9361014}}} 
    9371015 
     
    9391017Description: 
    9401018{{{ 
    941  
    942 }}} 
    943 Command: 
    944 {{{ 
    945  
    946 }}} 
    947 Output: 
    948 {{{ 
    949  
     1019Match pattern 'word(ma) space lexeme(kot)'. Mark matching parts with MA (before and after each word 'ma') and KOT (before and after any form of lexeme 'kot') tags. 
     1020}}} 
     1021Command: 
     1022{{{ 
     1023echo 'Ala ma kota. Ola ma kota.' | tok | lem -1 | mar -e '@MA word(ma) @MA space @KOT lexeme(kot) @KOT' 
     1024}}} 
     1025Output: 
     1026{{{ 
     10270000 03 W Ala 
     10280003 01 S _ 
     10290004 00 MA * 
     10300004 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     10310006 00 MA * 
     10320006 01 S _ 
     10330007 00 KOT * 
     10340007 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     10350011 00 KOT * 
     10360011 01 P . 
     10370012 01 S _ 
     10380013 03 W Ola 
     10390016 01 S _ 
     10400017 00 MA * 
     10410017 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     10420019 00 MA * 
     10430019 01 S _ 
     10440020 00 KOT * 
     10450020 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     10460024 00 KOT * 
     10470024 01 P . 
     10480025 01 S \n 
    9501049}}} 
    9511050 
     
    9531052Description: 
    9541053{{{ 
    955  
    956 }}} 
    957 Command: 
    958 {{{ 
    959  
    960 }}} 
    961 Output: 
    962 {{{ 
    963  
     1054Match pattern 'word(ma) space lexeme(kot)'. Mark matching parts with MA (before and after each word 'ma'), KOT (before and after any form of lexeme 'kot'), BEGINMATCH, ENDMATCH (before and after each matching) tags. 
     1055}}} 
     1056Command: 
     1057{{{ 
     1058echo 'Ala ma kota. Ola ma kota.' | tok | lem -1 | mar -e '@BEGINMATCH @MA word(ma) @MA space @KOT lexeme(kot) @KOT @ENDMATCH' 
     1059}}} 
     1060Output: 
     1061{{{ 
     10620000 03 W Ala 
     10630003 01 S _ 
     10640004 0004 00 BEGINMATCH * 
     10650004 00 MA * 
     10660004 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     10670006 00 MA * 
     10680006 01 S _ 
     10690007 00 KOT * 
     10700007 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     10710011 00 KOT * 
     10720011 00 ENDMATCH * 
     10730011 01 P . 
     10740012 01 S _ 
     10750013 03 W Ola 
     10760016 01 S _ 
     10770017 0017 00 BEGINMATCH * 
     10780017 00 MA * 
     10790017 02 W ma lem:mieć,V/AiMdNsP3R?TfrVp;mój,ADJPRO/CnvGfNsZs 
     10800019 00 MA * 
     10810019 01 S _ 
     10820020 00 KOT * 
     10830020 04 W kota lem:kota,N/CnGfNs;kot,N/CaGaNs,N/CgGaNs 
     10840024 00 KOT * 
     10850024 00 ENDMATCH * 
     10860024 01 P . 
     10870025 01 S \n 
    9641088}}} 
    9651089 
     
    11551279}}} 
    11561280 
     1281=== help.3. === 
     1282Description: 
     1283{{{ 
     1284Print gue help. 
     1285}}} 
     1286Command: 
     1287{{{ 
     1288gue -h 
     1289}}} 
     1290Output: 
     1291{{{ 
     1292guess 0.1 
     1293 
     1294Usage: guess [OPTIONS]... 
     1295 
     1296  -h, --help                    Print help and exit 
     1297      --full-help               Print help, including hidden options, and exit 
     1298  -V, --version                 Print version and exit 
     1299... 
     1300}}} 
     1301 
    11571302 
    11581303== version == 
     
    11851330lem 0.1 
    11861331}}} 
     1332 
     1333 
     1334=== version.3. === 
     1335Description: 
     1336{{{ 
     1337Print gue version information. 
     1338}}} 
     1339Command: 
     1340{{{ 
     1341gue -V 
     1342}}} 
     1343Output: 
     1344{{{ 
     1345guess 0.1 
     1346}}}