13 lines
144 B
Ruby
Executable File
13 lines
144 B
Ruby
Executable File
#!/usr/bin/ruby
|
|
|
|
require "find"
|
|
|
|
files = []
|
|
Find.find('.') do |path|
|
|
if File.file?(path)
|
|
files << path
|
|
end
|
|
end
|
|
|
|
puts files.sort
|