trترجمة الأحرف: تنفيذ عمليات الاستبدال بناءً على أحرف مفردة ومجموعات أحرف. لمزيد من التفاصيل: https://www.gnu.org/software/coreutils/manual/html_node/tr-invocation.html.
tr < {{path/to/file}} {{find_character}} {{replace_character}}
echo {{text}} | tr {{find_character}} {{replace_character}}
tr < {{path/to/file}} '{{abcd}}' '{{jkmn}}'
tr < {{path/to/file}} {{[-d|--delete]}} '{{input_characters}}'
tr < {{path/to/file}} {{[-s|--squeeze-repeats]}} '{{input_characters}}'
tr < {{path/to/file}} "[:lower:]" "[:upper:]"
tr < {{path/to/file}} {{[-cd|--complement --delete]}} "[:print:]"