Steps:
- Run
saveEmojisToExcel.jsin your browser to dowload a CSV containing filename, url for each custom emoji. - Create a
download.shscript file and give permissionschmod +x download.sh - Run the script:
./download.sh - See the
emojisfolder
- We need to install this extension
- Go to https://slack.com/customize/emoji and select your slack workspace
- We just drag the emojis folder in
Bulk Emoji Uploadersection

i=0; for f in *; do d=dir_$(printf %03d $((i/25+1))); mkdir -p $d; mv "$f" $d; let i++; done