6 lines
61 B
Ruby
Executable File
6 lines
61 B
Ruby
Executable File
#!/usr/bin/ruby
|
|
|
|
for file in ARGV
|
|
puts File.read(file)
|
|
end
|