diff options
Diffstat (limited to 'select-from')
-rwxr-xr-x | select-from | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/select-from b/select-from index b1fb2d8..e06e4fb 100755 --- a/select-from +++ b/select-from @@ -1,9 +1,9 @@ #!/usr/bin/env ruby -require 'trollop' +require 'optimist' require 'zipf' -opts = Trollop::options do +opts = Optimist::options do banner "select_from [--invert] -i <file> < <line separated data>" opt :index, "Line numbers to output.", :type => :string, :short => '-i', :required => true opt :invert, "Invert selection.", :type => :bool, :short => '-j', :default => false |