Built with Hugo Learn and Hugo
cat file1 | tr "[a-z]" "[A-Z]" cat file1 | tr "[:lower:]" "[:upper:]"
echo "file1 file2 file3" | tr [:space:] '\t'
echo 'abcdefg' | tr -d 'a'
echo "123a467b890c" | tr -d [:digit:]
echo "123a467b890c" | tr -cd [:digit:]
N/A