Sometimes I want to very cheaply hack some command line options into a simple script. A fun way to do it, without dealing with getopts or parsing or anything like that, is:

...
$quiet       = ARGV.delete('-d')
$interactive = ARGV.delete('-i')
...
# Deal with ARGV as usual here, maybe using ARGF or whatever.

It's not quite the normal Unix options syntax, because it will accept options non-option command line parameters, as in "myprog -i foo bar -q", but I can live with that. (Some people, such as the Subversion developers, prefer this. Sometimes I do too.)

An option that's just present or absent can't be implemented much more simply than the above. (One assignment, one function call, one side effect.) Is there an equally simple way to deal with options that take a parameter, such as "-f filename"?

EDIT:

One point I didn't make earlier on, because it hadn't become clear to me until the author of Trollop mentioned that the library fit "in one [800-line] file," is that I'm looking not only for clean syntax, but for a technique that has the following characteristics:

  1. The entirety of the code can be included in the script file (without overwhelming the actual script itself, which may be only a couple of dozen lines), so that one can drop a single file in a bin dir on any system with a standard Ruby 1.8.[5-7] installation and use it

  2. The code is small and simple enough that one can remember enough of it to directly type in code that will do the trick, rather than cutting and pasting from somewhere else. Think of the situation where you're on the console of a firewalled sever with no Internet access, and you want to toss together a quick script for a client to use.

link|improve this question

70% accept rate
1  
Just curious to the objection against getoptlong? – Mark Carey Dec 23 '09 at 7:30
The verbosity of it. With getoptlog, sometimes the options parsing code is longer than the part of the script that actually does the work. This is not just an aesthetic issue, but a maintenance cost issue. – Curt Sampson Jan 27 '10 at 0:43
3  
I don't understand the script inclusion requirement - both getoptlong and optparse are in the standard ruby library, so you don't NEED to copy them when deploying your script - if ruby works on that machine, then require 'optparse' or require 'getoptlong' will work too. – rampion Apr 29 '10 at 13:53
feedback

10 Answers

As the author of Trollop, I cannot BELIEVE the stuff that people think is reasonable in an option parser. Seriously. It boggles the mind.

Why should I have to make a module that extends some other module to parse options? Why should I have to subclass anything? Why should I have to subscribe to some half-assed "framework" just to parse the goddamn command line?

Here's the Trollop version of the above:

opts = Trollop::options do
  opt :quiet, "Use minimal output", :short => 'q'
  opt :interactive, "Be interactive"
  opt :filename, "File to process", :type => String
end

And that's it. 'opts' is now a hash with keys :quiet, :interactive, and :filename. You can do whatever you want with it. And you get a beautiful help page, formatted to fit your screen width, automatic short argument names, type checking... everything you need.

It's one file, so you can drop it in your lib/ directory if you don't want a formal dependency. It has a minimal DSL that is easy to pick up.

LOC per option, people. It matters.

link|improve this answer
10  
BTW, +1 for having written Trollop (which had already been mentioned here), but feel free to tone down the first paragraph a bit. – Curt Sampson Jun 19 '09 at 10:22
9  
He has a right to complain in this case I'm afraid. When you look at the alternatives: [1] [2] [3], for what is basically just processing a simple string array (no really, let that sink in), you can't help but wonder WHY? What do you gain from all that bloat? This is not C, where strings are, "problematic". Of course to each his own. :) – srcspider Aug 22 '10 at 21:40
3  
Please don't tone this down a bit. It's a righteous screed, brother. – William Pietri Dec 9 '10 at 18:36
1  
Feel free to tone down the tenth word a bit. – Andrew Grimm Mar 4 '11 at 7:00
yep, simplest command-line option parser ever. great work! – hopia Jun 15 '11 at 17:25
show 2 more comments
feedback

I share your distaste for require 'getopts', mainly due to the awesomeness that is OptionParser:

% cat temp.rb                                                            
require 'optparse'
OptionParser.new do |o|
  o.on('-d') { |b| $quiet = b }
  o.on('-i') { |b| $interactive = b }
  o.on('-f FILENAME') { |filename| $filename = filename }
  o.on('-h') { puts o; exit }
  o.parse!
end
p :quiet => $quiet, :interactive => $interactive, :filename => $filename
% ruby temp.rb                                                           
{:interactive=>nil, :filename=>nil, :quiet=>nil}
% ruby temp.rb -h                                                        
Usage: temp [options]
    -d
    -i
    -f FILENAME
    -h
% ruby temp.rb -d                                                        
{:interactive=>nil, :filename=>nil, :quiet=>true}
% ruby temp.rb -i                                                        
{:interactive=>true, :filename=>nil, :quiet=>nil}
% ruby temp.rb -di                                                       
{:interactive=>true, :filename=>nil, :quiet=>true}
% ruby temp.rb -dif apelad                                               
{:interactive=>true, :filename=>"apelad", :quiet=>true}
% ruby temp.rb -f apelad -i                                              
{:interactive=>true, :filename=>"apelad", :quiet=>nil}
link|improve this answer
That's pretty awesome all right. – Curt Sampson May 23 '09 at 4:44
Thanks, I can't see how this doesn't fit the OPs request, especially considering its all in standard lib, compared to the need of installing/vendoring any non standard code – dolzenko Mar 9 at 7:37
feedback

I totally understand why you want to avoid optparse - it can get too much. But there are a few far "lighter" solutions (compared to OptParse) that come as libraries but are simple enough to make a single gem installation worthwhile.

For example, check out this OptiFlag example. Just a few lines for the processing. A slightly truncated example tailored to your case:

require 'optiflag'

module Whatever extend OptiFlagSet
  flag "f"
  and_process!
end 

ARGV.flags.f # => .. whatever ..

There are tons of customized examples too. I recall using another that was even easier, but it has escaped me for now but I will come back and add a comment here if I find it.

link|improve this answer
feedback

I built micro-optparse to fill this obvious need for a short, but easy to use option-parser. It has a syntax similar to Trollop and is 70 lines short. If you don't need validations and can do without empty lines you can cut it down to 45 lines. I think that's exactly what you were looking for.

Short example:

options = Parser.new do |p|
  p.version = "fancy script version 1.0"
  p.option :verbose, "turn on verbose mode"
  p.option :number_of_chairs, "defines how many chairs are in the classroom", :default => 1
  p.option :room_number, "select room number", :default => 2, :value_in_set => [1,2,3,4]
end.process!

Calling the script with -h or --help will print

Usage: micro-optparse-example [options]
    -v, --[no-]verbose               turn on verbose mode
    -n, --number-of-chairs 1         defines how many chairs are in the classroom
    -r, --room-number 2              select room number
    -h, --help                       Show this message
    -V, --version                    Print version

It checks if input is of same type as the default value, generates short and long accessors, prints descriptive error messages if invalid arguments are given and more.

I compared several option-parser by using each option-parser for the problem I had. You can use these examples and my summary to make an informative decision. Feel free to add more implementations to the list. :)

link|improve this answer
+1 Looks interesting. I'll check it out. – the Tin Man Mar 19 '11 at 21:15
The library itself looks like it may be great. However, isn't it disingenuous to compare line counts with Trollop since you depend on and require optparse which is (give or take) 1937 lines. – Telemachus May 24 at 12:43
Comparing line counts is absolutely OK, since optparse is a default library, i.e. it ships with every ruby installation. Trollop is a third party library, hence you must import the complete code every time you want to include it in a project. µ-optparse always only requires the ~70 lines, since optparse is already there. – Florian Pilz 2 days ago
feedback

Here's the standard technique I usually use:

#!/usr/bin/env ruby

def usage(s)
    $stderr.puts(s)
    $stderr.puts("Usage: #{File.basename($0)}: [-l <logfile] [-q] file ...")
    exit(2)
end

$quiet   = false
$logfile = nil

loop { case ARGV[0]
    when '-q':  ARGV.shift; $quiet = true
    when '-l':  ARGV.shift; $logfile = ARGV.shift
    when /^-/:  usage("Unknown option: #{ARGV[0].inspect}")
    else break
end; }

# Program carries on here.
puts("quiet: #{$quiet} logfile: #{$logfile.inspect} args: #{ARGV.inspect}")
link|improve this answer
+1 for actually answering the question as asked :) – Taryn East Feb 15 at 15:03
feedback

You can try something like:

if( ARGV.include( '-f' ) )
  file = ARGV[ARGV.indexof( '-f' ) + 1 )]
  ARGV.delete('-f')
  ARGV.delete(file)
end
link|improve this answer
+1 but good luck dealing with incorrect syntax – krusty.ar May 22 '09 at 13:27
Not exactly as clean and small as I'd been hoping for.... – Curt Sampson May 23 '09 at 4:44
feedback

Trollop is pretty cheap.

link|improve this answer
That would be, <trollop.rubyforge.org/>;. I rather like it, I think, though I really wasn't looking for a library. – Curt Sampson May 26 '09 at 14:30
True, it is a library. However, at < 800 LOC, it's a pretty negligible one, at that. gitorious.org/trollop/mainline/blobs/master/lib/trollop.rb – g33kz0r May 28 '09 at 19:35
1  
I was kinda thinking that maybe 30-50 lines would be good, if I were going so far as to use a "library." But then again, I guess once you've got as far as a separate file full of code, API design is more important than line count. Still, I'm not sure I would want to include it in a one-off script that I just want to plop into the bin directory on a random system. – Curt Sampson Jun 19 '09 at 10:21
feedback

Have you considered Thor by wycats? I think it's a lot cleaner than optparse. If you already have a script written, it might be some more work to format it or refactor it for thor, but it does make handling options very simple.

Here's the example snippet from the README:

class MyApp < Thor                                                # [1]
  map "-L" => :list                                               # [2]

  desc "install APP_NAME", "install one of the available apps"    # [3]
  method_options :force => :boolean, :alias => :optional          # [4]
  def install(name)
    user_alias = options[:alias]
    if options.force?
      # do something
    end
    # ... other code ...
  end

  desc "list [SEARCH]", "list all of the available apps, limited by SEARCH"
  def list(search = "")
    # list everything
  end
end

Thor automatically maps commands as such:

app install myname --force

That gets converted to:

MyApp.new.install("myname")
# with {'force' => true} as options hash
  1. Inherit from Thor to turn a class into an option mapper
  2. Map additional non-valid identifiers to specific methods. In this case, convert -L to :list
  3. Describe the method immediately below. The first parameter is the usage information, and the second parameter is the description.
  4. Provide any additional options. These will be marshaled from -- and - params. In this case, a --force and a -f option is added.
link|improve this answer
I like the command-mapping thing, since a single binary with a bunch of subcommands is something I do often. Still, though you've gone a ways from 'light'. Could you find an even simpler way to express that same functionality? What if you didn't need to print --help output? What if "head myprogram.rb" was the help output? – Curt Sampson May 25 '09 at 22:36
feedback

Apparently @WilliamMorgan and I think alike. I just released last night to Github what I now see is a similar library to Trollop (Named how?) after having done a search for OptionParser on Github, see Switches

There are a few differences, but the philosophy is the same. One obvious difference is that Switches is dependent on OptionParser.

link|improve this answer
feedback

I'm developing my own option parser gem called Acclaim.

I wrote it because I wanted to create git-style command line interfaces and be able to cleanly separate the functionality of each command into separate classes, but it can also be used without the entire command framework as well:

(options = []) << Acclaim::Option.new(:verbose, '-v', '--verbose')
values = Acclaim::Option::Parser.new(ARGV, options).parse!
puts 'Verbose.' if values.verbose?

No stable release as of yet, but I've already implemented some features like:

  • custom option parser
  • flexible parsing of option's arguments that allows for both minimum and optional
  • support for many option styles
  • replace, append or raise on multiple instances of the same option
  • custom option handlers
  • custom type handlers
  • predefined handlers for the common standard library classes

There's a lot of emphasis on commands so it might be a little heavy for simple command line parsing but it works well and I've been using it on all of my projects. If you're interested in the command interface aspect then check out the project's GitHub page for more information and examples.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.