Back
Not sure exactly how you want to use, but here's the basic example to get you started:
echo '[email protected]' | tr 'A-Za-z' 'N-ZA-Mn-za-m'
To make it easier, you can alias a tr command in the .bashrc file thusly:
alias rot13="tr 'A-Za-z' 'N-ZA-Mn-za-m'"
Now you can call:
echo '[email protected]' | rot13
Want to be a Linux expert? Come and join this Linux course
31k questions
32.8k answers
501 comments
693 users