RosettaCodeData/Task/Rot-13/UNIX-Shell/rot-13-2.sh

7 lines
97 B
Bash
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
#!/bin/sh
2015-11-18 06:14:39 +00:00
rot13() {
2013-04-10 23:57:08 -07:00
tr '[a-m][n-z][A-M][N-Z]' '[n-z][a-m][N-Z][A-M]'
2015-11-18 06:14:39 +00:00
}
2013-04-10 23:57:08 -07:00
cat ${1+"$@"} | rot13