diff --git a/pages.ar/common/tr.md b/pages.ar/common/tr.md index 60c17a1ef1..ec0df63c57 100644 --- a/pages.ar/common/tr.md +++ b/pages.ar/common/tr.md @@ -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}}`