Files
tldr/pages.tr/common/rg.md
Alper Orus 3e3230b8c3 rg: add Turkish translation (#9936)
* rg: add Turkish translation
---------
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
Co-authored-by: Tan Siret A <40173707+yutyo@users.noreply.github.com>
2023-04-08 14:56:23 +05:30

38 lines
1.1 KiB
Markdown
Raw 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.

# rg
> Ripgrep, yinelemeli satır-odaklı bir CLI arama aracıdır.
> Grep'e daha hızlı bir alternatif olmayı hedefler.
> Daha fazla bilgi için: <https://github.com/BurntSushi/ripgrep>.
- Normal bir ifade için geçerli dizini yinelemeli olarak ara:
`rg {{normal_ifade}}`
- Geçerli dizinde, gizli dosyalar ve ".gitignore" da listelenen dosyalar dahil olmak üzere normal ifadeleri yinelemeli olarak ara:
`rg --no-ignore --hidden {{normal_ifade}}`
- Normal ifadeyi yalnızca bir dizin alt kümesinde ara:
`rg {{normal_ifade}} {{dizin_alt_kümesi}}`
- Bir glob ile eşleşen dosyalarda normal bir ifade ara (örn: `README.*`):
`rg {{normal_ifade}} --glob {{glob}}`
- Normal bir ifadeyle eşleşen dosya adlarını ara:
`rg --files | rg {{normal_ifade}}`
- Yalnızca eşleşen dosyaları listele (diğer komutlara yönlendirirken kullanışlıdır):
`rg --files-with-matches {{normal_ifade}}`
- Verilen normal ifadeyle eşleşmeyen satırları göster:
`rg --invert-match {{normal_ifade}}`
- Bir değişmez dizi deseni için arama yap:
`rg --fixed-strings -- {{dizi}}`