mirror of
https://github.com/chocolate-doom/research.git
synced 2024-11-24 21:11:11 +00:00
12 lines
161 B
Text
12 lines
161 B
Text
|
#!/usr/bin/env ruby
|
||
|
|
||
|
require "common"
|
||
|
|
||
|
config = find_config(ARGV[1])
|
||
|
strings = find_strings(ARGV[0], config)
|
||
|
|
||
|
for string in strings
|
||
|
puts string[1].to_json
|
||
|
end
|
||
|
|