element-web-patches/reactions/fetch-latest-format.sh

7 lines
240 B
Bash
Raw Normal View History

2022-03-31 12:12:23 -04:00
#!/bin/sh
base="https://raw.githubusercontent.com/milesj/emojibase/master/packages/data/en"
for file in compact.raw.json data.raw.json; do
echo "$file:"
curl -sf "$base/$file" | jq '.[] | select(.hexcode == "2721")' || exit $?
done