tr (truncate)
Replace character
echo "hello: world" | tr ':' '='
hello= world
Remove character
echo "hello: world" | tr -d ':'
hello world
echo "hello: world" | tr ':' '='
hello= world
echo "hello: world" | tr -d ':'
hello world