diff --git a/Examples.md b/Examples.md index d2a3642..0444aef 100644 --- a/Examples.md +++ b/Examples.md @@ -69,6 +69,7 @@ Table of Contents * [Python Behave BDD](#python-behave-bdd) * [Transmission](#transmission) * [Todoist CLI](#Todoist-CLI) +* [Emoji](#Emoji) Nice collection at https://github.com/DanielFGray/fzf-scripts @@ -1864,4 +1865,24 @@ Request database file from https://www1.dict.cc/translation_file_request.php ```sh cat /path/to/dict.txt | tail -n +16 | fzf --tiebreak=length -``` \ No newline at end of file +``` + +### Emoji + +[emoji.txt](https://gist.github.com/keidarcy/128141ff30a8c3f9ddc0d6c3ecb5b334) + +```sh +emojis=$(curl -sSL 'https://git.io/JXXO7') + +selected_emoji=$(echo $emojis | fzf) + +echo $selected_emoji +``` + +```sh +echo $selected_emoji | pbcopy +``` + + + +