Tagged Questions
The optionparser tag has no wiki summary.
7
votes
5answers
5k views
How do you specify a required switch (not argument) with Ruby OptionParser?
Say I'm writing a script and I want to require a --host switch (with value of course) but if the --host switch isn't specified I want the option parsing to fail. I can't seem to figure out how to do ...
6
votes
3answers
1k views
Using ruby's OptionParser to parse sub-commands
I'd like to be able to use ruby's OptionParser to parse sub-commands of the form
COMMAND [GLOBAL FLAGS] [SUB-COMMAND [SUB-COMMAND FLAGS]]
like:
git branch -a
gem list foo
I know I could switch ...
5
votes
3answers
998 views
How do I handle a missing mandatory argument in Ruby OptionParser?
In OptionParser I can make an option mandatory, but if I leave out that value it will take the name of any following option as the value, screwing up the rest of the command line parsing.
Here is a ...
4
votes
1answer
1k views
How to use variable arguments with ruby's OptionParser
I don't know ruby very well, but I'm trying to add some functionality to this script a co-worker wrote.
Basically right now it takes a few flags and standard in as input, and it uses OptionParser to ...
3
votes
2answers
684 views
boost::program_options config file option with multiple tokens
I can not seem to be able to read from config file multitoken options like I can from command line. What is the syntax for the config file?
This is how the option description is added:
//parser.cpp
...
3
votes
3answers
1k views
OptionParser python module - multiple entries of same variable?
I'm writing a little python script to get stats from several servers or a single server, and I'm using OptionParser to parse the command line input.
#!/usr/bin/python
import sys
from optparse import ...
2
votes
4answers
72 views
Why does this command fail when I use a # in command line args?
I have the following command:
ruby SaveAllDatabases.rb 192.168.0.15 1024 -r #0-D --non-interactive
It's a fairly basic command in which I run a ruby script with some command line arguments. The -r ...
2
votes
2answers
72 views
multiple invocations of OptionParser.parse_args() within the same python execution
I have the following example setup:
|-- main_script.py
`-- module
|-- __init__.py
`-- submodule.py
where the contents of main_script are:
import optparse
import module
parser = ...
2
votes
2answers
253 views
Application with both console and gui mode
I have a python console app. Like most python console apps it uses the OptionParser module to take arguments. I've now developed a GUI for my app using wxPython and i'd like to integrate the two. I'd ...
1
vote
1answer
87 views
Is OptionParser in conflict with sphinx?
I'm trying to write a documentation for my project in sphinx and whenever sphinx encounters OptionParser in my module it gives me:
sphinx-build: error: no such option: -b
I thought that it's ...
1
vote
2answers
100 views
In Ruby, how can I escape a comma in an argument parameter with OptionParser?
Given the following code:
options = {}
optparse = OptionParser.new do |opts|
opts.on('-t', '--thing [THING1,THING2]', Array, 'Set THING1, THING2') do |t|
options[:things] = t
end
end
...
1
vote
1answer
409 views
understanding OptionParser
I was trying out optparse and this is my initial script.
#!/usr/bin/env python
import os, sys
from optparse import OptionParser
parser = OptionParser()
usage = "usage: %prog [options] arg1 arg2"
...
1
vote
1answer
543 views
Ruby: OptionParser: String Arg & Hash Assignment
Using OptionParser for string argument input and hash assignment. What is the best way to read-in multiple variables for a single argument? How do I then assign those to a hash to reference? Here ...
1
vote
1answer
206 views
Can I use Ruby's OptionParser to accept an arbitrary argument pattern?
Let's say that I have a simple Ruby app where I want the first argument (if any) to specify the environment: TEST, DEVELOPMENT or PRODUCTION (with DEVELOPMENT being the default if no argument is ...
0
votes
2answers
131 views
Unable to use OptionParser and rspec
I have a simple watir (web-driver) script which goes to google. But, I want to use option parser to set an argument in the cmd to select a browser. Below is my script:
require 'optparse'
require ...
0
votes
1answer
70 views
Where is the documentation for Ruby OptionParser's parse! method?
I have been unable to locate any documentation for parse!, a very commonly used instance method for the OptionParser class from Ruby's standard distribution.
I have seen parse! used in the examples ...
0
votes
2answers
65 views
What dry_run do in optparse python?
I have been searching a lot for past hour but not able to find anything
What is functionality of dry_run option in optparse of python and can anyone point to me some tutorial or link explaining all ...
0
votes
1answer
417 views
Set and require default Python script OptionParser
The following "parser.add_option" statements work but if the script is run without an option/arg it will not complain. If an option/argument are not specified I would like it to display help (-h / ...
0
votes
6answers
950 views
Parsing empty options in Python
I have an application that allows you to send event data to a custom script. You simply lay out the command line arguments and assign what event data goes with what argument. The problem is that there ...