Answers for "tr command"

1

tr command

tr command replaces input chars for respective translated chars. Example:
echo 'dcba' > file.txt
tr 'abcd' '1234' < file.txt
4321
Posted by: Guest on November-10-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language