Skip to content

Instantly share code, notes, and snippets.

@june29
Last active December 10, 2015 00:39
Show Gist options
  • Save june29/4352995 to your computer and use it in GitHub Desktop.
Save june29/4352995 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
file = ARGV.shift
people = ARGV
open(file).each_with_index do |line, index|
puts "%s : %s" % [people[index % people.size], line]
end
# Example:
# $ ruby alternation.rb story.txt 男 女
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment