Files
tldr/pages.tr/common/fzf.md
Alper Orus 07a4a8e168 fzf: add Turkish translation (#9925)
* Create fzf.md

* Update pages.tr/common/fzf.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* Update fzf.md

---------

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
2023-03-20 21:18:17 +08:00

30 lines
718 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# fzf
> Komut satırı belirsiz bulucu.
> Sk'ya benzer.
> Daha fazla bilgi için: <https://github.com/junegunn/fzf>.
- Belirtilen dizindeki tüm dosyalarda FZF'yi başlat:
`find {{dosya/yolu/dizin}} -type f | fzf`
- Çalışan süreçler için FZF'yi başlat:
`ps aux | fzf`
- `Shift + Tab` ile birden çok dosya seç ve bir dosyaya yaz:
`find {{dosya/yolu/dizin}} -type f | fzf --multi > {{dosya/yolu/dosya}}`
- fzf'yi belirli bir sorgu ile başlat:
`fzf --query "{{sorgu}}"`
- Core ile başlayan ve Go, RB veya PY ile biten girişlerde fzf'yi başlat:
`fzf --query "^core go$ | rb$ | py$"`
- PYC ile eşleşmeyen ve Travis'e tam olarak eşleşen girişlerde fzf'yi başlat:
`fzf --query "!pyc 'travis"`