Take me away.
Ruby
最終更新:
foreign_blue
-
view
- def test a b
- a+b
- end
-
#!/usr/bin/ruby
dirs = ARGV[0].to_i
files= ARGV[1].to_i
dirs.times do |i|
system("mkdir dir_#{i}")
files.times do |j|
system("echo #{j} > dir_#{i}/#{j}")
end
end



