#!/bin/sh # Get the titles of posts in a given subreddit (defaults to /r/all) curl -A Mozilla https://reddit.com/r/"${1:-all}"/"${2:+"$2"/}".compact | pup -p 'p.title > a' 'json{}' | jq -M -r '.[] | .text,.href' | sed ' /^http/{ s/^/ / } '