7.miscellaneous Text Utilities
tr the tr utility is used to translate specified characters into other characters or to delete them. tr [options] set1 [set2] set1: to be replaced or removed set2: to be substituted for the characters listed in the first argument. tr ‘{}’ ‘()’ < inputfile > outputfile translate braces into parenthesis echo " … " | tr [:space:] ‘\t’ translate white-space to tabs echo “This is for testing” | tr -s [:space:]...