1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Oxiland 0.6 ships [`oxiland-cli`](https://crates.io/crates/oxiland-cli), an
rdfproc-shaped command-line tool over the safe Rust facade (ADR-019). It is
**not** a drop-in binary for native Redland `rdfproc`.
Each invocation opens the store, runs **one** command, and exits. There is no
multi-command interactive session—chain commands against a Fjall path for
durable workflows.
```console
cargo install oxiland-cli
cargo run -p oxiland-cli -- --help
```
```console
oxiland-cli -n -s fjall ./mystore parse ./data.ttl --syntax turtle
oxiland-cli -s fjall ./mystore find - - -
oxiland-cli -s fjall -r csv ./mystore query - - \
'SELECT ?s ?p ?o WHERE { ?s ?p ?o } LIMIT 10'
oxiland-cli -s memory memory parse ./data.ttl --syntax turtle
```
- -