| 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | # ssh: get form |
| 4 | # jq: show tagline submissions only from the JSON response |
| 5 | # uniq: only unique submissions |
| 6 | # tac: reverse line order |
| 7 | # nl: number lines |
| 8 | ssh pgs.sh forms superlove_tagline | jq .[].data.tagline -r | uniq | tac | nl |
Revision 7d5f34122f9b684af679eca23d40dc588e8470f7