TO 2023 REBRAND

This commit is contained in:
Bel LaPointe
2023-10-23 09:45:31 -06:00
parent 91799b978a
commit c739041642
10 changed files with 739 additions and 428 deletions

10
cv/rendered.sh Normal file
View File

@@ -0,0 +1,10 @@
#! /bin/bash
cd "$(dirname "$(realpath "$BASH_SOURCE")")"
cat 2* \
| gojq -c --yaml-input '.[] | {when: .when, s: .rendered}' \
| grep -v null \
| grep -v '""' \
| $(which jq) -r -c . \
| sort \
| $(which jq) -s 'group_by(.when) | map({key: (.[0].when | tostring), value: [.[] | .s]}) | from_entries' \
| gojq --yaml-output