Method: FindCommand#output
- Defined in:
- lib/justy/commands/find_command.rb
#output ⇒ Object
14 15 16 17 18 19 20 21 22 |
# File 'lib/justy/commands/find_command.rb', line 14 def output puts "\r\n === Identical files ===\n" @files.each_value do |filename_array| if filename_array.length > 1 puts "-------------------" filename_array.each { |filename| puts ' '+filename } end end end |