mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-18 08:13:40 -05:00
Updated Examples (markdown)
23
Examples.md
23
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
|
||||
```
|
||||
```
|
||||
|
||||
### 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
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user