19 lines
282 B
Bash
19 lines
282 B
Bash
|
#!/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
|
||
|
orcli import csv "${t}.csv"
|
||
|
orcli list > "${t}.output"
|
||
|
|
||
|
# test
|
||
|
grep "${t}" "${t}.output"
|