Skip to content

Instantly share code, notes, and snippets.

@hcoyote
Created July 8, 2013 16:21
Show Gist options
  • Save hcoyote/5950262 to your computer and use it in GitHub Desktop.
Save hcoyote/5950262 to your computer and use it in GitHub Desktop.
I got your rot13() right here ...
rot13 ()
{
if [ $# = 0 ]; then
tr "[a-m][n-z][A-M][N-Z]" "[n-z][a-m][N-Z][A-M]";
else
tr "[a-m][n-z][A-M][N-Z]" "[n-z][a-m][N-Z][A-M]" < $1;
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment