We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07f691b commit b6fdfb8Copy full SHA for b6fdfb8
commands/communication/emojis/random-emoji.sh
@@ -24,7 +24,7 @@ if ! command -v jq &> /dev/null; then
24
exit 1;
25
fi
26
27
-mapfile -t EMOJIS < <(curl -s https://raw.githubusercontent.com/github/gemoji/master/db/emoji.json | jq -r '.[] | .emoji')
+IFS=$'\n' read -d '' -r -a EMOJIS < <(curl -s https://raw.githubusercontent.com/github/gemoji/master/db/emoji.json | jq -r '.[] | .emoji' && printf '\0')
28
EMOJI="${EMOJIS[$RANDOM % ${#EMOJIS[@]}]}"
29
echo -n "$EMOJI" | pbcopy
30
echo "$EMOJI"
0 commit comments