23 lines
459 B
Bash
23 lines
459 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
t="import-jsonl"
|
||
|
|
||
|
# create tmp directory
|
||
|
tmpdir="$(mktemp -d)"
|
||
|
trap '{ rm -rf "${tmpdir}"; }' 0 2 3 15
|
||
|
|
||
|
# input
|
||
|
cp data/example.jsonl "${tmpdir}/${t}.jsonl"
|
||
|
|
||
|
# assertion
|
||
|
cp data/example.tsv "${tmpdir}/${t}.assert"
|
||
|
sed -i 's/a b c/_ - a _ - b _ - c/' "${tmpdir}/${t}.assert"
|
||
|
|
||
|
# action
|
||
|
cd "${tmpdir}" || exit 1
|
||
|
orcli import jsonl "${t}.jsonl" --projectName "${t}"
|
||
|
orcli export tsv "${t}" > "${t}.output"
|
||
|
|
||
|
# test
|
||
|
diff -u "${t}.assert" "${t}.output"
|