Last active 1 day ago

tagline.sh Raw
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 (new submissions start at bottom, ascending order. makes it easier to read from term)
7# nl: number lines
8ssh pgs.sh forms superlove_tagline | jq .[].data.tagline -r | uniq | tac | nl