Skip to content

Instantly share code, notes, and snippets.

@orkoden
Created March 3, 2015 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orkoden/cb8ea5385f21a1da7ec2 to your computer and use it in GitHub Desktop.
Save orkoden/cb8ea5385f21a1da7ec2 to your computer and use it in GitHub Desktop.
Lettermix randomizes the letters in words, that are passed as arguments.
#!/usr/bin/env ruby
ARGV.each do|a|
puts "#{a}".split("").shuffle.join
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment