mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 13:55:25 +02:00
tr: update Arabic page (#16434)
Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
This commit is contained in:
parent
99f866fac5
commit
b731c431e9
1 changed files with 4 additions and 4 deletions
|
@ -17,16 +17,16 @@
|
|||
|
||||
- حذف جميع تكرارات مجموعة الأحرف المحددة من المدخلات:
|
||||
|
||||
`tr -d '{{input_characters}}' < {{path/to/file}}`
|
||||
`tr {{[-d|--delete]}} '{{input_characters}}' < {{path/to/file}}`
|
||||
|
||||
- ضغط سلسلة من الأحرف المتطابقة إلى حرف واحد:
|
||||
|
||||
`tr -s '{{input_characters}}' < {{path/to/file}}`
|
||||
`tr {{[-s|--squeeze-repeats]}} '{{input_characters}}' < {{path/to/file}}`
|
||||
|
||||
- ترجمة محتويات ملف إلى أحرف كبيرة (Upper-case):
|
||||
- تحويل محتويات ملف إلى أحرف كبيرة (Upper-case):
|
||||
|
||||
`tr "[:lower:]" "[:upper:]" < {{path/to/file}}`
|
||||
|
||||
- إزالة الأحرف غير القابلة للطباعة من ملف:
|
||||
|
||||
`tr -cd "[:print:]" < {{path/to/file}}`
|
||||
`tr {{[-cd|--complement --delete]}} "[:print:]" < {{path/to/file}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue