mjestecko/browse.sh

19 lines
454 B
Bash
Raw Permalink Normal View History

2024-02-24 14:15:37 +00:00
#!/usr/bin/env bash
set +e
printf "%s" "Enter URL: "
read URL
articles=$(curl -s "$URL/articles.txt")
2024-03-31 11:16:12 +00:00
articles=$(echo -n "$articles" | python3 -c "import sys; from urllib.parse import unquote; print(unquote(sys.stdin.read()));")
2024-02-24 14:15:37 +00:00
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