9 lines
348 B
Bash
Executable File
9 lines
348 B
Bash
Executable File
#!/bin/bash
|
|
UA="BSN-OpenClaw/1.0 (Brettspiel-News.de; kontakt@brettspiel-news.de)"
|
|
AK="***"
|
|
for fid in 1 9 11; do
|
|
echo "=== Forum $fid ==="
|
|
curl -s --max-time 15 -H "User-Agent: $UA" -H "Authorization: Bearer $AK" "https://boardgamegeek.com/xmlapi2/threads?forumid=$fid&sort=postdate&sortdir=desc&count=5" 2>/dev/null | head -50
|
|
echo ""
|
|
done
|