Remove package versions from Readme.md
Change-Id: I82d8ab6f611379231db7ac417cf634b27d6f1bfe
diff --git a/Readme.md b/Readme.md
index 7fe7043..4dc041b 100644
--- a/Readme.md
+++ b/Readme.md
@@ -38,7 +38,7 @@
#### Split English text into tokens
```
-$ echo "It's working." | java -jar target/KorAP-Tokenizer-2.2.3-standalone.jar -l en
+$ echo "It's working." | java -jar target/KorAP-Tokenizer-*-standalone.jar -l en
It
's
working
@@ -47,7 +47,7 @@
#### Split French text into tokens and sentences
```
$ echo "C'est une phrase. Ici, il s'agit d'une deuxième phrase." \
- | java -jar target/KorAP-Tokenizer-2.2.3-standalone.jar -s -l fr
+ | java -jar target/KorAP-Tokenizer-*-standalone.jar -s -l fr
C'
est
une
@@ -72,7 +72,7 @@
In order to end a text, flush the output and reset the character position, an EOT character (0x04) can be used.
```
$ echo -n -e 'This is a text.\x0a\x04\x0aAnd this is another text.\n\x04\n' |\
- java -jar target/KorAP-Tokenizer-2.2.3-standalone.jar --positions
+ java -jar target/KorAP-Tokenizer-*-standalone.jar --positions
This
is
a
@@ -90,7 +90,7 @@
#### Print token and sentence offset
```
echo -n -e ' This ist a start of a text. And this is a sentence!!! But what the hack????\x0a\x04\x0aAnd this is another text.' |\
- java -jar target/KorAP-Tokenizer-2.2.3-standalone.jar --no-tokens --positions --sentence-boundaries
+ java -jar target/KorAP-Tokenizer-*-standalone.jar --no-tokens --positions --sentence-boundaries
1 5 6 9 10 11 12 17 18 20 21 22 23 27 27 28 29 32 33 37 38 40 41 42 43 51 51 54 55 58 59 63 64 67 68 72 72 76
1 28 29 54 55 76
0 3 4 8 9 11 12 19 20 24 24 25