mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-18 08:13:40 -05:00
Updated Examples (markdown)
21
Examples.md
21
Examples.md
@@ -69,6 +69,7 @@ Table of Contents
|
|||||||
* [Python Behave BDD](#python-behave-bdd)
|
* [Python Behave BDD](#python-behave-bdd)
|
||||||
* [Transmission](#transmission)
|
* [Transmission](#transmission)
|
||||||
* [Todoist CLI](#Todoist-CLI)
|
* [Todoist CLI](#Todoist-CLI)
|
||||||
|
* [Emoji](#Emoji)
|
||||||
|
|
||||||
Nice collection at https://github.com/DanielFGray/fzf-scripts
|
Nice collection at https://github.com/DanielFGray/fzf-scripts
|
||||||
|
|
||||||
@@ -1865,3 +1866,23 @@ Request database file from https://www1.dict.cc/translation_file_request.php
|
|||||||
```sh
|
```sh
|
||||||
cat /path/to/dict.txt | tail -n +16 | fzf --tiebreak=length
|
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