1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

fzf: add Arabic translation (#15961)

* Create fzf.md

* Update fzf.md

* Update fzf.md

---------

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
Machiavelli 2025-03-25 01:19:39 +02:00 committed by GitHub
parent 5124f84782
commit d8dcbe637d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

29
pages.ar/common/fzf.md Normal file
View file

@ -0,0 +1,29 @@
# fzf
> أداة بحث تقريبي (fuzzy) لسطر الأوامر.
> مشابهة لـ `sk`.
> لمزيد من التفاصيل: <https://github.com/junegunn/fzf>.
- تشغيل `fzf` على جميع الملفات داخل مُجَلَّد معين:
`find {{path/to/directory}} -type f | fzf`
- تشغيل `fzf` للبحث في العمليات الجارية في الخلفية:
`ps aux | fzf`
- تحديد ملفات متعددة باستخدام `<Shift Tab>` وحفظها في ملف:
`find {{path/to/directory}} -type f | fzf --multi > {{path/to/file}}`
- تشغيل `fzf` مع نص بحثي محدد:
`fzf --query "{{query}}"`
- تشغيل `fzf` على الإدخالات التي تبدأ بـ "core" وتنتهي بـ "go" أو "rb" أو "py":
`fzf --query "^core go$ | rb$ | py$"`
- تشغيل `fzf` على الإدخالات التي لا تطابق "pyc" وتطابق تمامًا "travis":
`fzf --query "!pyc 'travis"`