Skip to content

Commit

Permalink
Allow for multiple input documents as command line args
Browse files Browse the repository at this point in the history
Change-Id: I1acd812771cb1e224f018ef82623c9a7c3df1f99
  • Loading branch information
kupietz authored and Akron committed Nov 15, 2024
1 parent fc3a0ee commit 5b3f1d8
Show file tree
Hide file tree
Showing 3 changed files with 218 additions and 200 deletions.
3 changes: 2 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
2.6.0 2024-09-19
2.6.0 2024-11-11
- Add -o parameter.
- Add support for inline dependency relations.
- Add support for --auto-textsigle.
- Add support for multiple input files.

2.5.0 2024-01-24
- Upgrade minimal Perl version to 5.36 to improve
Expand Down
8 changes: 7 additions & 1 deletion Readme.pod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML

=head1 SYNOPSIS

cat corpus.i5.xml | tei2korapxml - > corpus.korapxml.zip
cat corpus.i5.xml | tei2korapxml -tk - > corpus.korapxml.zip
tei2korapxml -tk corpus.i5.xml > corpus.korapxml.zip

=head1 DESCRIPTION

Expand Down Expand Up @@ -93,6 +94,11 @@ Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
The input file to process. If no specific input is defined and a single
dash C<-> is passed as an argument, data is read from C<STDIN>.

Instead of using C<-i> input files can also be defined as trailing arguments
to the command:

tei2korapxml -tk corpus1.i5.xml corpus2.i5.xml

=item B<--output|-o>

The output zip file to be created. If no specific output is defined,
Expand Down
Loading

0 comments on commit 5b3f1d8

Please sign in to comment.