mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
cut: add Arabic translation (#15541)
This commit is contained in:
parent
898f711019
commit
d1481b8412
1 changed files with 20 additions and 0 deletions
20
pages.ar/common/cut.md
Normal file
20
pages.ar/common/cut.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# cut
|
||||
|
||||
> استخراج حقول من `stdin` أو من الملفات.
|
||||
> لمزيد من التفاصيل: <https://www.gnu.org/software/coreutils/manual/html_node/cut-invocation.html>.
|
||||
|
||||
- طباعة نطاق [c]حرف/[f]حقل محدد من كل سطر:
|
||||
|
||||
`{{command}} | cut --{{characters|fields}} {{1|1,10|1-10|1-|-10}}`
|
||||
|
||||
- طباعة نطاق [f]حقل محدد من كل سطر باستخدام [d]فاصل معين:
|
||||
|
||||
`{{command}} | cut --delimiter "{{,}}" --fields {{1}}`
|
||||
|
||||
- طباعة نطاق [c]حرف معين من كل سطر في ملف محدد:
|
||||
|
||||
`cut --characters {{1}} {{path/to/file}}`
|
||||
|
||||
- طباعة [f]حقول محددة من أسطر منتهية بـ `NUL` (مثل الناتج من `find . -print0`) بدلاً من أسطر جديدة:
|
||||
|
||||
`{{command}} | cut --zero-terminated --fields {{1}}`
|
Loading…
Add table
Reference in a new issue