2022-12-04 00:39:53 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
t="list"
|
|
|
|
|
|
|
|
# create tmp directory
|
|
|
|
tmpdir="$(mktemp -d)"
|
|
|
|
trap '{ rm -rf "${tmpdir}"; }' 0 2 3 15
|
|
|
|
|
|
|
|
# input
|
|
|
|
cp data/example.csv "${tmpdir}/${t}.csv"
|
|
|
|
|
|
|
|
# action
|
|
|
|
cd "${tmpdir}" || exit 1
|
2023-01-12 11:18:06 +01:00
|
|
|
orcli import csv "${t}.csv" --projectName "${t}"
|
2022-12-04 00:39:53 +01:00
|
|
|
orcli list > "${t}.output"
|
|
|
|
|
|
|
|
# test
|
|
|
|
grep "${t}" "${t}.output"
|