-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cut: add Arabic translation (#15541)
- Loading branch information
1 parent
898f711
commit d1481b8
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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}}` |