diff options
Diffstat (limited to 'norm-german')
-rwxr-xr-x | norm-german | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/norm-german b/norm-german index cf9c060..85a39da 100755 --- a/norm-german +++ b/norm-german @@ -1,13 +1,13 @@ #!/usr/bin/env ruby require 'thread' -require 'trollop' +require 'optimist' STDIN.set_encoding 'utf-8' STDOUT.set_encoding 'utf-8' -conf = Trollop::options do +conf = Optimist::options do banner "norm_german < <file w/ lowercased tokens>" opt :upper, "uppercase", :type => :bool, :default => false opt :threads, "#threads", :type => :int, :default => 1, :short => '-h' |