Concept Flow - tr (translate characters)
Input text stream
tr command reads characters
Check each character
If char in set1?
No→Output char unchanged
Yes
Replace with corresponding char in set2
Output translated char
Repeat for all chars
End of input stream
The tr command reads input characters one by one, replaces characters found in the first set with corresponding characters from the second set, and outputs the result.