fjord/wc.rb

56 lines
1.3 KiB
Ruby
Raw Normal View History

2024-07-02 22:44:35 +09:00
# frozen_string_literal: true
2024-07-01 09:32:50 +09:00
2024-07-02 22:44:35 +09:00
require 'optparse'
2024-07-01 09:32:50 +09:00
2024-07-10 14:55:39 +09:00
total_lines = 0
total_words = 0
total_bytes = 0
2024-07-02 22:44:35 +09:00
options = {}
OptionParser.new do |opts|
2024-07-03 22:17:39 +09:00
opts.on('-l') { options[:lines] = true }
opts.on('-w') { options[:words] = true }
opts.on('-c') { options[:bytes] = true }
2024-07-02 22:44:35 +09:00
end.parse!
2024-07-01 09:32:50 +09:00
2024-07-10 14:55:39 +09:00
input_sources = ARGV.empty? ? [ARGF] : ARGV
input_sources.each do |source|
lines = 0
words = 0
bytes = 0
begin
input = source == ARGF ? ARGF.read : File.read(source)
input.each_line do |line|
lines += 1
words += line.split.size
bytes += line.bytesize
end
total_lines += lines
total_words += words
total_bytes += bytes
options = { bytes: true, lines: true, words: true } if options.empty?
result = []
result << lines if options[:lines]
result << words if options[:words]
result << bytes if options[:bytes]
puts "#{result.join(' ')} #{source == ARGF ? '' : source}"
rescue Errno::ENOENT
puts "wc: #{source}: そのようなファイルやディレクトリはありません"
end
2024-07-02 22:44:35 +09:00
end
2024-07-10 14:55:39 +09:00
if input_sources.size > 1
total_result = []
total_result << total_lines if options[:lines]
total_result << total_words if options[:words]
total_result << total_bytes if options[:bytes]
2024-07-02 22:44:35 +09:00
2024-07-10 14:55:39 +09:00
puts "#{total_result.join(' ')} total"
end