table of contents
- trixie 0.4.9-1+b2
- testing 0.5.2-1
- unstable 0.5.2-1
- experimental 0.5.2-2
| oxigraph-convert(1) | General Commands Manual | oxigraph-convert(1) |
NAME¶
oxigraph-convert - Convert a RDF serialization from one format to an other
SYNOPSIS¶
oxigraph convert [-f|--from-file] [--from-format] [--from-base] [-t|--to-file] [--to-format] [--to-base] [--lenient] [--from-graph] [--from-default-graph] [--to-graph] [-h|--help]
DESCRIPTION¶
Convert a RDF serialization from one format to an other
OPTIONS¶
- -f, --from-file=FROM_FILE
- File to convert from
If no file is given, stdin is read.
- --from-format=FROM_FORMAT
- The format of the file(s) to convert from
It can be an extension like "nt" or a MIME type like "application/n-triples".
By default the format is guessed from the input file extension.
- --from-base=FROM_BASE
- Base IRI of the file to read
- -t, --to-file=TO_FILE
- File to convert to
If no file is given, stdout is written.
- --to-format=TO_FORMAT
- The format of the file(s) to convert to
It can be an extension like "nt" or a MIME type like "application/n-triples".
By default the format is guessed from the target file extension.
- --to-base=TO_BASE
- Base IRI of the file to write
- --lenient
- Attempt to keep converting even if the data file is invalid
This disables most of validation on RDF content.
- --from-graph=FROM_GRAPH
- Only load the given named graph from the input file
By default all graphs are loaded.
- --from-default-graph
- Only load the default graph from the input file
- --to-graph=TO_GRAPH
- Name of the graph to map the default graph to
By default the default graph is used.
- -h, --help
- Print help (see a summary with '-h')
| convert |