blob: 96e7755cbc821910d9afa7bc563ed12e95b12d4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env bash
#
set -eou pipefail
timeline=${1:-home}
endpoint="https://bitcoinhackers.org"
#
curl -sL \
-H "Authorization: Bearer i-baQt_tYmJ_NA8F4VcXBe2x1ZLaOBvRayHhzYzEP3Y" \
"$endpoint/api/v1//timelines/$timeline" \
| jq -r '.[] | [.account.username, .content] | @tsv' \
| sed 's,<[^>]*>,,g' \
| column --table --separator $'\t' --table-wrap 2 --output-width 80 \
| sed 's,$,\n,g'
#
|