KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#claude-code
#codex
#cli
#developer-tools
#react
#windows
emoji-downloader
★ 35
Open GitHub ↗
A simple Emoji downloader for CLI
Download README (.md)
Explore Similar Repositories
Egg
:
No description available.
intro-javascript-jul-2021
:
No description available.
Gnomeshade
:
Self-hosted personal finance tracker
Geography-of-Open-Source-Software
:
No description available.
erqwest
:
An experimental erlang HTTP client wrapping reqwest
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
emoji-downloader
?
Download (.md)
# ⏬ Emoji Downloader A simple Emoji downloader for CLI ## Features - Uses emojipedia to get the file - Supports all the emojis including the variants/skin tones ## Installation Copy and paste `emojidl.sh` contents (or following snippet) into your .bashrc or .zshrc file. It's a simple function: ```bash emojidl() { curl -kLss "https://emojipedia.org/search/?q=$1" | grep "on Apple" | grep " 2x" | sed -n 's/.*<img src="\([^"]*\)".*/\1/p' | xargs curl -O } ``` ## Oneliner Explaination - Makes a `curl` request to `https://emojipedia.org/search/?q=<EMOJI>` - Finds the lines including "on Apple" text - Finds "2x" ones - Parses the line using `sed` to extract the src attribute - Uses `curl` once again to download the extracted URL ## Usage Just write the `emojidl <emoji>` and it'll find and download the emoji. ```bash $ emojidl 🚂 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 16940 100 16940 0 0 12233 0 0:00:01 0:00:01 --:--:-- 9472 ``` ## License It's CC0.