mirror of
https://github.com/chocolate-doom/research.git
synced 2024-11-24 13:01:04 +00:00
deabee4bcb
list of "good" (replaceable) strings. Subversion-branch: /research Subversion-revision: 1889
11 lines
161 B
Ruby
Executable file
11 lines
161 B
Ruby
Executable file
#!/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
|
|
|