mirror of
https://github.com/valitydev/holmes.git
synced 2024-11-06 01:45:25 +00:00
8 lines
188 B
Bash
8 lines
188 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
BATCH="${1}"
|
||
|
[ -z "${BATCH}" ] && exit 127
|
||
|
|
||
|
echo "${BATCH}" | \
|
||
|
jq '{id, postings:[.postings[] | {from_id:.to_id, to_id:.from_id, amount, currency_sym_code, description}]}'
|