#!/usr/bin/env bash set +e printf "%s" "Enter URL: " read URL articles=$(curl -s "$URL/articles.txt") articles=$(echo -n "$articles" | python3 -c "import sys; from urllib.parse import unquote; print(unquote(sys.stdin.read()));") while : do article=$(./tools/widgets/list_selector.py --desc="Select an article:" --result="line" -- $articles) if [ -z "$article" ]; then break fi curl -s "$URL/markdown/$article.md" | pager done