Skip to content

Instantly share code, notes, and snippets.

@nunq
Created January 5, 2022 22:43
Show Gist options
  • Save nunq/ea6f01b204aeaf002f933b5e0aa12677 to your computer and use it in GitHub Desktop.
Save nunq/ea6f01b204aeaf002f933b5e0aa12677 to your computer and use it in GitHub Desktop.
extract emoji
#!/bin/bash
# download this pages as html
# https://unicode.org/emoji/charts/full-emoji-list.html
paste -d " " (grep -oP "(?<=<td class='chars'>).*?(?=</td>)" Full\ Emoji\ List,\ v14.0.html | psub) (grep -oP "(?<=<td class='name'>).*?(?=</td>)" Full\ Emoji\ List,\ v14.0.html | psub) > ~/emojout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment