summaryrefslogtreecommitdiff
path: root/benchmark/prepare_so_count_words.rb
blob: ee2138cdb24c148246d3a51348ad165791caf04c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# prepare 'wc.input'

def prepare_wc_input
  wcinput = File.join(File.dirname($0), 'wc.input')
  wcbase  = File.join(File.dirname($0), 'wc.input.base')
  unless FileTest.exist?(wcinput)
    data = File.read(wcbase)
    13.times{
      data << data
    }
    open(wcinput, 'w'){|f| f.write data}
  end
end

prepare_wc_input