summary refs log tree commit diff
diff options
context:
space:
mode:
authorStarfall <admin@plural.cafe>2020-05-08 23:14:52 -0500
committerStarfall <admin@plural.cafe>2020-05-09 01:04:00 -0500
commit805828b368c9b4a76fe574da07a2f6d841e2ccd9 (patch)
tree7c042233be40c7b382efafc8de95f64e14d400e1
parent037006cd825db775a3dd2e2770b2d25403447f10 (diff)
Bash oneliner to get a list of custom emoji
-rwxr-xr-xget-emoji-list.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/get-emoji-list.sh b/get-emoji-list.sh
new file mode 100755
index 0000000..c5102ae
--- /dev/null
+++ b/get-emoji-list.sh
@@ -0,0 +1,5 @@
+#!/usr/bin/env sh
+# http://unlicense.org/
+
+curl https://plural.cafe/api/v1/custom_emojis | jq '.[].shortcode' | sed 's/"//g' | sort > emoji-list
+