#!/usr/bin/ruby -w # Classical rot13 filter. # # File is named "caesar" for Caesar cipher to avoid prefix conflict with # the rotate scripts. ARGF.each_char{|c| print c.tr "A-Za-z", "N-ZA-Mn-za-m" }