Skip to content

Instantly share code, notes, and snippets.

@sandbochs
Created October 11, 2012 05:39
Show Gist options
  • Save sandbochs/3870423 to your computer and use it in GitHub Desktop.
Save sandbochs/3870423 to your computer and use it in GitHub Desktop.
Random MOTD
def random_motd
file_reader = File.new("motd_list.txt", "r")
count = 0
file_reader.each do |line|
count += 1
if Random.rand(count) == 0
motd = file_reader.readline
end
end
motd
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment