#!/bin/bash t="import-json-rename" # create tmp directory tmpdir="$(mktemp -d)" trap '{ rm -rf "${tmpdir}"; }' 0 2 3 15 # input cp data/example.json "${tmpdir}/${t}.json" # assertion cp data/example.tsv "${tmpdir}/${t}.assert" # action cd "${tmpdir}" || exit 1 orcli import json "${t}.json" --projectName "${t}" --rename orcli export tsv "${t}" > "${t}.output" # test diff -u "${t}.assert" "${t}.output"