Skip to content

Instantly share code, notes, and snippets.

@jhannah
Created December 3, 2010 23:52
Show Gist options
  • Select an option

  • Save jhannah/727739 to your computer and use it in GitHub Desktop.

Select an option

Save jhannah/727739 to your computer and use it in GitHub Desktop.
qwerty -> dvorak
$qwerty = q#\-=qwertyuiop[]asdfghjkl;'zxcvbnm,.\/_+QWERTYUIOP{}ASDFGHJKL:"ZXCVBNM<>?#;
$dvorak = q#[]',.pyfgcrl\/=aoeuidhtns\-;qjkxbmwvz{}"<>PYFGCRL?+AOEUIDHTNS_:QJKXBMWVZ#;
$_ = $ARGV[0];
eval "tr/$qwerty/$dvorak/";
print "DVORAK: $_", "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment