Skip to content

Instantly share code, notes, and snippets.

@loisaidasam
Created August 13, 2018 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loisaidasam/c543d036a8ac7184ba955eb33172a863 to your computer and use it in GitHub Desktop.
Save loisaidasam/c543d036a8ac7184ba955eb33172a863 to your computer and use it in GitHub Desktop.
Get a list of ALL THE EMOJIS!
#!/bin/bash
# Via https://github.com/iamcal/emoji-data
# Requires jq
# https://stedolan.github.io/jq/
curl -Ss "https://raw.githubusercontent.com/iamcal/emoji-data/master/emoji.json" | jq '[.[] | .short_name]'
@loisaidasam
Copy link
Author

$ curl -Ss "https://gist.githubusercontent.com/loisaidasam/c543d036a8ac7184ba955eb33172a863/raw/ea4f412fdb73b82fdfcdd25884112f981658b8db/get-all-the-emojis.sh" | bash |head
[
  "hash",
  "keycap_star",
  "zero",
  "one",
  "two",
  "three",
  "four",
  "five",
  "six",

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment