💾 Archived View for ait.place › dot › bin › hltv.txt captured on 2022-07-16 at 13:49:07.

View Raw

More Information

-=-=-=-=-=-=-

#!/bin/sh
rawjson=$(curl -s https://hltv-api.vercel.app/api/matches.json)
echo $rawjson | jq -r '.[] | select(.teams[].name!="") |
	"\(.teams[0].name) vs \(.teams[1].name) - \(.time)"' | uniq