git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41295 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
8 lines
178 B
Ruby
Executable File
8 lines
178 B
Ruby
Executable File
#!/usr/bin/ruby
|
|
require File.expand_path('../config_files', __FILE__)
|
|
ARGV.each {|n|
|
|
STDOUT.print "Downloading #{n}..."; STDOUT.flush
|
|
ConfigFiles.download(n)
|
|
STDOUT.puts
|
|
}
|