tr
NAME
tr - translate or delete characters
SYNOPSIS
tr [OPTION]… SET1 [SET2]
DESCRIPTION
Translate, squeeze, and/or delete characters from standard input, writing to standard output.
OPTIONS
- -d, –delete
- delete characters
EXAMPLES
- Delete all the newlines from john.csr file
cat john.csr | base64 | tr -d "\n"