Files

8 lines
240 B
Bash
Raw Permalink Normal View History

2019-02-22 11:16:21 -08:00
#!/usr/bin/env bash
(
cd $(dirname $0)
echo "digraph {"
echo "rankdir=RL; splines=ortho; node [shape=box];"
2019-02-22 11:16:21 -08:00
jq -f org_chart.jq --raw-output < ../../content/marketing/contributors.json
echo "}"
) | dot -Tpng > org.png