Assuming you are on a unix machine and a large .nt file is OK, you could call riot once for each ttl, but always appending to a single file:
rm -f big_single_file.nt # remove old file for i in *.ttl ; do echo "Converting $i" /path/to/apache-jena/bin/riot --out=ntriples "$i" >> big_single_file.nt done Am Mi., 2. Dez. 2020 um 20:36 Uhr schrieb Hashim Khan < [email protected]>: > Hi, > I want to merge dboedia3.5.1 dumps of ttl format into one single file, > as the triple store i am working on, can upload one file, but has no > capability of wild card so that to use *.ttl etc. Anyone can help please. > -- Alexis Armin Huf <[email protected]>
