GNU Gengetopt 2.22.4

Table of Contents


Next: , Previous: (dir), Up: (dir)

Gengetopt

Gengetopt is a tool to write command line option parsing code for C programs.

This is Edition 2.22.4 of the Gengetopt manual.

This file documents GNU Gengetopt version 2.22.4.

This manual is for GNU Gengetopt (version 2.22.4, 23 December 2009), a tool to write command line option parsers for C programs.

Copyright © 2001 - 2009 Free Software Foundation, Inc.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with the Front-Cover Texts being “A GNU Manual,” and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled “GNU Free Documentation License.”

(a) The FSF's Back-Cover Text is: “You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development.”


Next: , Previous: Top, Up: Top

Audience

Gengetopt is a tool to generate C code to parse the command line arguments argc and argv that are part of every C or C++ program. The generated code uses the C library function getopt_long to perform the actual command line parsing.

This manual is written for C and C++ programmers, specifically the lazy ones. If you've written any non-trivial C program, you've had to deal with argument parsing. It isn't particularly difficult, nor is it particularly exciting. It is one of the classic programming nuisances, which is why most books on programming leave it as an exercise for the reader. Gengetopt can save you from this work, leaving you free to focus on the interesting parts of your program.

Thus your program will be able to handle command line options such as:

     myprog --input foo.c -o foo.o --no-tabs -i 100 *.class

And both long options (those that start with --) and short options (start with - and consist of only one character) can be handled (see Terminology for further details). For standards about short and long options you may want to take a look at the GNU Coding Standards (http://www.gnu.org/prep/standards_toc.html).

Gengetopt can also generate a function to save the command line options into a file (see Basic Usage), and a function to read the command line options from a file (see Configuration files). Of course, these two kinds of files are compliant.

Generated code works also if you use GNU Autoconf and GNU Automake and it is documented with Doxygen comments. In particular, PACKAGE, PACKAGE_NAME and VERSION are used in the generated code to print information.


Next: , Previous: Audience, Up: Top

Gengetopt Copying Conditions

Gengetopt is free software; you are free to use, share and modify it under the terms of the GNU General Public License that accompanies this manual.

The code that Gengetopt generates is also free software; however it is licensed with a simple all-permissive license instead of the GPL or LGPL. You are free to do anything you like with the generated code, including incorporating it into or linking it with proprietary software.

Gengetopt was originally written by Roberto Arturo Tena Sanchez. It is currently maintained by Lorenzo Bettini http://www.lorenzobettini.it.

A primordial version of Terminology was written by Adam Greenblatt.


Next: , Previous: Copying, Up: Top

1 Installation

See the file INSTALL for detailed building and installation instructions; anyway if you're used to compiling Linux software that comes with sources you may simply follow the usual procedure, i.e. untar the file you downloaded in a directory and then:

     cd <source code main directory>
     ./configure
     make
     make install

Note: unless you specify a different install directory by --prefix option of configure (e.g. ./configure --prefix=<your home>), you must be root to run make install.

Files will be installed in the following directories:

executables
/prefix/bin
docs
/prefix/share/doc/gengetopt
examples
/prefix/share/doc/gengetopt/examples
additional files
/prefix/share/gengetopt

Default value for prefix is /usr/local but you may change it with --prefix option to configure.

1.1 Download

You can download it from GNU's ftp site: ftp://ftp.gnu.org/gnu/gengetopt or from one of its mirrors (see http://www.gnu.org/prep/ftp.html).

I do not distribute Windows binaries anymore; since, they can be easily built by using Cygnus C/C++ compiler, available at http://www.cygwin.com. However, if you don't feel like downloading such compiler, you can request such binaries directly to me, by e-mail (find my e-mail at my home page) and I can send them to you.

Archives are digitally signed by me (Lorenzo Bettini) with GNU gpg (http://www.gnupg.org). My GPG public key can be found at my home page (http://www.lorenzobettini.it).

You can also get the patches, if they are available for a particular release (see below for patching from a previous version).

1.2 Anonymous Git Checkout

This project's git repository can be checked out through the following clone instruction1:

     git clone git://git.savannah.gnu.org/gengetopt.git

Further instructions can be found at the address:

http://savannah.gnu.org/projects/gengetopt.

And the git repository can also browsed on-line at

http://git.savannah.gnu.org/cgit/gengetopt.git.

Please note that this way you will get the latest development sources of Gengetopt, which may also be unstable. This solution is the best if you intend to correct/extend this program: you should send me patches against the latest git repository sources.

If, on the contrary, you want to get the sources of a given release, through git, say, e.g., version X.Y.Z, you must specify the tag rel_X_Y_Z.

When you compile the sources that you get from the git repository, before running the configure and make commands, for the first time, you must run the command:

     autoreconf -i

This will run the autotools commands in the correct order, and also copy possibly missing files. You should have installed recent versions of automake, autoconf and libtool in order for this to succeed.

1.3 What you need to build gengetopt

Gengetopt has been developed under GNU/Linux, using gcc (C++), and bison (yacc) and flex (lex), and ported under Win32 with Cygnus C/C++compiler, available at http://www.cygwin.com.

For developing gengetopt, I use the excellent GNU Autoconf2, GNU Automake3 and GNU Libtool4. Since version 2.19 I also started to use Gnulib - The GNU Portability Library5, “a central location for common GNU code, intended to be shared among GNU packages” (for instance, I rely on Gnulib for checking for the presence and correctness of getopt_long function, Use Gnulib).

Moreover GNU Gengen (http://www.gnu.org/software/gengen) is used for automatically generating the code that generates the command line parser.

Actually, you don't need all these tools above to build gengetopt because I provide generated sources, unless you want to develop gengetopt.

The code generated by gengetopt relies on the getopt_long function that is usually in the standard C library; however, there may be some implementations of the C library that don't include it; we refer to No getopt_long, for instructions on how to check whether getopt_long is part of the library and how to deal with their lacking (using autoconf and automake).

1.4 Patching from a previous version

If you downloaded a patch, say gengetopt-1.3-1.3.1-patch.gz (i.e., the patch to go from version 1.3 to version 1.3.1), cd to the directory with sources from the previous version (gengetopt-1.3) and type:

     gunzip -cd ../gengetopt-1.3-1.3.1.patch.gz | patch -p1

and restart the compilation process (if you had already run configure a simple make should do).


Next: , Previous: Installation, Up: Top

2 Basic Usage

The command line options, which have to be handled by gengetopt generated function, are specified in a file (typically with .ggo extension). This file consists of sentences with the formats shown below (these sentences are allowed to span more than one line). Statements in {} are optional (the option sentences need not to be given in separate lines):

     package "<packname>"
     version "<version>"
     purpose "<purpose>"
     usage "<usage>"
     description "<description>"
     
     args "<command line options>"
     
     option <long> <short> "<desc>"
         {details="<detailed description>"}
         {argtype} {typestr="<type descr>"}
         {values="<value1>","<value2>",...}
         {default="<default value>"}
         {dependon="<other option>"}
         {required} {argoptional} {multiple}
         {hidden}
     
     option <long> <short> "<desc>" flag <on/off>
     
     section "section name" {sectiondesc="optional section description"}
     
     text "a textual sentence"

Where:

package
This has the precedence over PACKAGE and PACKAGE_NAME generated by autoconf. This is required, unless you use autoconf.

If package is specified, then it will be used to print the program name in the output of --help and --version, and also when printing errors (from within the generated parser). If it is not specified, then PACKAGE will be used when printing errors, and PACKAGE_NAME in the output of --help and --version. Note that if PACKAGE_NAME is empty, then PACKAGE will be used also in this case.

version
This has the precedence over VERSION generated by autoconf. This is required, unless you use autoconf.
purpose
What the program does (even on more than one line), it will be printed with the help, before the usage string. Optional.
usage
The “Usage” string that will be printed with the help6. If not specified, it will be generated automatically. Optional.
description
The “Description” string that will be printed with the help7, after the usage string. Optional.
args
With args8 you can specify options that will be added to the command line options of gengetopt itself. For instance, if you always run gengetopt on your input file with the options --no-handle-error --string-parser -u, you can add these options in the input file like this:
          args "--no-handle-error --string-parser -u"

and remove those recurrent options from the command line. Optional.

long
The long option, a double quoted string with upper and lower case characters, digits, a dash (-) and a dot (.). No spaces allowed. The name of the variables generated to store arguments (see later in this section) are long options converted to be legal C variable names. This means that . and - are both replaced by _.


short
The short option, a single upper or lower case char, or a digit. If a - is specified, then no short option is considered for the long option (thus long options with no associated short options are allowed). Since version 2.22 you can also specify ? as the short option.


desc
This description will be printed during the output of --help. Wrapping will be automatically performed.
details
This is an extended description string for the option that will be printed (after the option) during the output of --detailed-help9, which will be automatically generated. Thus, these further details will NOT be printed with --help. Wrapping will be automatically performed. Optional.


argtype
string, int, short, long, float, double, longdouble or longlong. If the option is an enumerated one (see Options with enumerated values) the type can also be enum. If no type is specified the option does not accept an argument.


typestr
a description for the type of the values for the option. This will be used during the output of --help (e.g., "filename" instead of simply STRING, or "portnumber" instead of simply INT).


values
a list of strings containing all the possible values that can be passed to the option. If not specified, the type is considered string10. For this kind of options, the type can also be enum. More on this feature can be found in Options with enumerated values.


default
an optional default value for the option. The value must always be specified as a double quoted string. It is possible to combine this with the multiple flag (Multiple Options) but only by giving a single default value. It is not possible to specify a list of default values.


dependon
this option depends on another option (whose long name description is specified). If this option is given at command line but not the option it depends on, an error will be generated.


required
required or optional. This specifies whether such option must be given at each program invocation. These keywords were introduced in release 2.17. Before, you had to use the keywords yes or no. You can still use these keywords but their use is not advised since they are not much explicative.

If not specified, an option is considered mandatory; if you do not want this behavior, you can require that by default options are considered optional, by using the command line option --default-optional11.


argoptional
If this flag is specified then this option has an argument that is optional. In this case, when you specify the argument at command line, please use = in case you use a long option, and avoid spaces if you use short option. For instance, if the option with optional argument is -B|--bar, use the following command line syntax: -B15 or --bar=15, and NOT the following one -B 15 nor --bar 15.

By using this specification together with default you can obtain an option that even if not explicitly specified will have the default value, and if it is specified without an argument it will have, again, the default value.


multiple
If this flag is specified then this option can be specified more than once at command line; all the values for this option are stored in an array. You can also specify the number of occurrences that a multiple option must be specified. Notice that this is independent from the required flag. See Multiple Options.


hidden
If an option is “hidden” it will not appear in the output of --help but it can still be specified at command line12. In case hidden options are used, the command line option --full-help will also be generated. This will print also the hidden options13. If there's an option with details, then also --detailed-help14 will be automatically generated; if one then specifies --detailed-help also hidden options will be printed (besides the details for options).


on/off
on or off. This is the state of the flag when the program starts. If user specifies the option, the flag toggles.

For strings (delimited by ") the following convention is adopted15: a string spanning more than one line will be interpreted with the corresponding line breaks; if the line break is not desired one can use the backslash \ to break the line without inserting a line break. A line break in a string can also be inserted with the string \n. Here are some examples:

     "This string will be interpreted
     into two lines exactly as it is"
     
     "This string is specified with two lines \
     but interpreted as specified in only one line \
     i.e., without explicit line break"
     
     "This string\nwill have a line break"

Moreover, if the character " must be specified in the string, it will have to be escaped with the backslash16:

     "This string contains \"a quoted string\" inside"

The part that must be provided in the correct order is

     option <long> <short> "<desc>"

while the other specifications can be given in any order17. Thus, for instance

     option <long> <short> "<desc>" {argtype} {typestr="<type descr>"}

is the same as

     option <long> <short> "<desc>" {typestr="<type descr>"} {argtype}

Comments begin with # in any place (but in strings) of the line and ends in the end of line.

Notice that the options -h,--help and -V,--version are added automatically; however, if you specify an option yourself that has h as short form, then only --help is added18. The same holds for -V,--version.

In case hidden options are used, See Hidden options, the command line option --full-help will also be generated. This will print also the hidden options19.

If there's at least one option with details, the command line option --detailed-help will also be generated. This will print also the details for options and hidden options20.

Options can be part of sections, that provide a more meaningful descriptions of the options. A section can be defined with the following syntax (the sectiondesc is optional) and all the options following a section declaration are considered part of that sections:

     section "section name" {sectiondesc="optional section description"}

Notice that the separation in sections is stronger than separation in groups of mutual exclusive options (see Group options). Furthermore, sections should not be inserted among group options (but only externally). A section makes sense only if it is followed by some options. If you don't specify any option after a section, that section will not be printed at all. If you need to simply insert some text in the output of --help, then you must use text, explained in the next paragraph.

You can insert, among options, a textual string that will be printed in the output of --help21:

     text "\nA text description with possible line\nbreaks"

Of course, you can use this mechanism even to manually insert blank lines among options with an empty text string:

     text ""

You can also specify the list of values that can be passed to an option (if the type is not specified, the option has type string). More on this feature can be found in Options with enumerated values. If a value that is not in the list is passed, an error is raised. You can think of such options as enumerated options. It is not necessary to pass the complete value at the command line option: a non ambiguous prefix will do. For instance, if the accepted values are "foo","bar","foobar", then you can pass at the command line the value "b" and the value "bar" will be selected, or the value "foob" and the value "foobar" will be selected; instead, passing the value "fo" will raise an ambiguity error.

Here's an example of such a file (the file is called sample1.ggo)

     # Name of your program
     package "sample1" # don't use package if you're using automake
     # Version of your program
     version "2.0"   # don't use version if you're using automake
     
     # Options
     option  "str-opt"         s "A string option, for a filename"
             string typestr="filename"     optional
     text "\nA brief text description"
     text " before the other options.\n"
     option  "my-opt"          m "Another integer option, \
     this time the description of the option should be \"quite\" long to \
     require wrapping... possibly more than one wrapping :-) \
     especially if I\nrequire a line break"      int     optional
     option  "int-opt"         i "A int option"         int        yes
     section "more involved options"
             sectiondesc="the following options\nare more complex"
     text ""
     option  "flag-opt"        - "A flag option"        flag       off
     option  "funct-opt"       F "A function option"    optional
         details="\nA function option is basically an option with no argument.\
       It can be used, e.g., to specify a specific behavior for a program.
     
     Well, this further explanation is quite useless, but it's only to \
     show an example of an option with details, \
     which will be printed only when --detailed-help is given \
     at the command line."
     section "last option section"
     option  "long-opt"        - "A long option"        long       optional
     option  "def-opt"         - "A string option with default"
             string default="Hello" optional
     option  "enum-opt"         - "A string option with list of values"
             values="foo","bar","hello","bye" default="hello" optional
     option  "secret"         S "hidden option will not appear in --help"
             int optional hidden
     option  "dependant"         D
             "option that depends on str-opt" int optional dependon="str-opt"
     text "\nAn ending text."
     

The simplest way to use gengetopt is to pass this file as the standard input, i.e.:

     gengetopt < sample1.ggo

By default gengetopt generates cmdline.h and cmdline.c. Otherwise we can specify these names with a command line option:

     gengetopt < sample1.ggo --file-name=cmdline1 --unamed-opts

The option --unamed-opts allows the generated command line parser to accept also names, without an option (for instance you can pass a file name without an option in front of it, and also use wildcards, such as *.c, foo*.? and so on). These are also called parameters (see Terminology). You can specify an optional description for these additional names (default is FILES).

In cmdline1.h you'll find the generated C struct:

     /** @file cmdline1.h
      *  @brief The header file for the command line option parser
      *  generated by GNU Gengetopt version 2.22.3
      *  http://www.gnu.org/software/gengetopt.
      *  DO NOT modify this file, since it can be overwritten
      *  @author GNU Gengetopt by Lorenzo Bettini */
     
     #ifndef CMDLINE1_H
     #define CMDLINE1_H
     
     /* If we use autoconf.  */
     #ifdef HAVE_CONFIG_H
     #include "config.h"
     #endif
     
     #include <stdio.h> /* for FILE */
     
     #ifdef __cplusplus
     extern "C" {
     #endif /* __cplusplus */
     
     #ifndef CMDLINE_PARSER_PACKAGE
     /** @brief the program name (used for printing errors) */
     #define CMDLINE_PARSER_PACKAGE "sample1"
     #endif
     
     #ifndef CMDLINE_PARSER_PACKAGE_NAME
     /** @brief the complete program name (used for help and version) */
     #define CMDLINE_PARSER_PACKAGE_NAME "sample1"
     #endif
     
     #ifndef CMDLINE_PARSER_VERSION
     /** @brief the program version */
     #define CMDLINE_PARSER_VERSION "2.0"
     #endif
     
     /** @brief Where the command line options are stored */
     struct gengetopt_args_info
     {
       const char *help_help; /**< @brief Print help and exit help description.  */
       const char *detailed_help_help; /**< @brief Print help, including all details and hidden options, and exit help description.  */
       const char *full_help_help; /**< @brief Print help, including hidden options, and exit help description.  */
       const char *version_help; /**< @brief Print version and exit help description.  */
       char * str_opt_arg;       /**< @brief A string option, for a filename.  */
       char * str_opt_orig;       /**< @brief A string option, for a filename original value given at command line.  */
       const char *str_opt_help; /**< @brief A string option, for a filename help description.  */
       int my_opt_arg;       /**< @brief Another integer option, this time the description of the option should be \"quite\" long to require wrapping... possibly more than one wrapping :-) especially if I\nrequire a line break.  */
       char * my_opt_orig;       /**< @brief Another integer option, this time the description of the option should be \"quite\" long to require wrapping... possibly more than one wrapping :-) especially if I\nrequire a line break original value given at command line.  */
       const char *my_opt_help; /**< @brief Another integer option, this time the description of the option should be \"quite\" long to require wrapping... possibly more than one wrapping :-) especially if I\nrequire a line break help description.  */
       int int_opt_arg;       /**< @brief A int option.  */
       char * int_opt_orig;       /**< @brief A int option original value given at command line.  */
       const char *int_opt_help; /**< @brief A int option help description.  */
       int flag_opt_flag;       /**< @brief A flag option (default=off).  */
       const char *flag_opt_help; /**< @brief A flag option help description.  */
       const char *funct_opt_help; /**< @brief A function option help description.  */
       long long_opt_arg;       /**< @brief A long option.  */
       char * long_opt_orig;       /**< @brief A long option original value given at command line.  */
       const char *long_opt_help; /**< @brief A long option help description.  */
       char * def_opt_arg;       /**< @brief A string option with default (default='Hello').  */
       char * def_opt_orig;       /**< @brief A string option with default original value given at command line.  */
       const char *def_opt_help; /**< @brief A string option with default help description.  */
       char * enum_opt_arg;       /**< @brief A string option with list of values (default='hello').  */
       char * enum_opt_orig;       /**< @brief A string option with list of values original value given at command line.  */
       const char *enum_opt_help; /**< @brief A string option with list of values help description.  */
       int secret_arg;       /**< @brief hidden option will not appear in --help.  */
       char * secret_orig;       /**< @brief hidden option will not appear in --help original value given at command line.  */
       const char *secret_help; /**< @brief hidden option will not appear in --help help description.  */
       int dependant_arg;       /**< @brief option that depends on str-opt.  */
       char * dependant_orig;       /**< @brief option that depends on str-opt original value given at command line.  */
       const char *dependant_help; /**< @brief option that depends on str-opt help description.  */
     
       unsigned int help_given ;       /**< @brief Whether help was given.  */
       unsigned int detailed_help_given ;       /**< @brief Whether detailed-help was given.  */
       unsigned int full_help_given ;       /**< @brief Whether full-help was given.  */
       unsigned int version_given ;       /**< @brief Whether version was given.  */
       unsigned int str_opt_given ;       /**< @brief Whether str-opt was given.  */
       unsigned int my_opt_given ;       /**< @brief Whether my-opt was given.  */
       unsigned int int_opt_given ;       /**< @brief Whether int-opt was given.  */
       unsigned int flag_opt_given ;       /**< @brief Whether flag-opt was given.  */
       unsigned int funct_opt_given ;       /**< @brief Whether funct-opt was given.  */
       unsigned int long_opt_given ;       /**< @brief Whether long-opt was given.  */
       unsigned int def_opt_given ;       /**< @brief Whether def-opt was given.  */
       unsigned int enum_opt_given ;       /**< @brief Whether enum-opt was given.  */
       unsigned int secret_given ;       /**< @brief Whether secret was given.  */
       unsigned int dependant_given ;       /**< @brief Whether dependant was given.  */
     
       char **inputs ; /**< @brief unamed options (options without names) */
       unsigned inputs_num ; /**< @brief unamed options number */
     } ;
     
     /** @brief The additional parameters to pass to parser functions */
     struct cmdline_parser_params
     {
       int override; /**< @brief whether to override possibly already present options (default 0) */
       int initialize; /**< @brief whether to initialize the option structure gengetopt_args_info (default 1) */
       int check_required; /**< @brief whether to check that all required options were provided (default 1) */
       int check_ambiguity; /**< @brief whether to check for options already specified in the option structure gengetopt_args_info (default 0) */
       int print_errors; /**< @brief whether getopt_long should print an error message for a bad option (default 1) */
     } ;
     
     /** @brief the purpose string of the program */
     extern const char *gengetopt_args_info_purpose;
     /** @brief the usage string of the program */
     extern const char *gengetopt_args_info_usage;
     /** @brief all the lines making the help output */
     extern const char *gengetopt_args_info_help[];
     /** @brief all the lines making the full help output (including hidden options) */
     extern const char *gengetopt_args_info_full_help[];
     /** @brief all the lines making the detailed help output (including hidden options and details) */
     extern const char *gengetopt_args_info_detailed_help[];
     
     /**
      * The command line parser
      * @param argc the number of command line options
      * @param argv the command line options
      * @param args_info the structure where option information will be stored
      * @return 0 if everything went fine, NON 0 if an error took place
      */
     int cmdline_parser (int argc, char **argv,
       struct gengetopt_args_info *args_info);
     
     /**
      * The command line parser (version with additional parameters - deprecated)
      * @param argc the number of command line options
      * @param argv the command line options
      * @param args_info the structure where option information will be stored
      * @param override whether to override possibly already present options
      * @param initialize whether to initialize the option structure my_args_info
      * @param check_required whether to check that all required options were provided
      * @return 0 if everything went fine, NON 0 if an error took place
      * @deprecated use cmdline_parser_ext() instead
      */
     int cmdline_parser2 (int argc, char **argv,
       struct gengetopt_args_info *args_info,
       int override, int initialize, int check_required);
     
     /**
      * The command line parser (version with additional parameters)
      * @param argc the number of command line options
      * @param argv the command line options
      * @param args_info the structure where option information will be stored
      * @param params additional parameters for the parser
      * @return 0 if everything went fine, NON 0 if an error took place
      */
     int cmdline_parser_ext (int argc, char **argv,
       struct gengetopt_args_info *args_info,
       struct cmdline_parser_params *params);
     
     /**
      * Save the contents of the option struct into an already open FILE stream.
      * @param outfile the stream where to dump options
      * @param args_info the option struct to dump
      * @return 0 if everything went fine, NON 0 if an error took place
      */
     int cmdline_parser_dump(FILE *outfile,
       struct gengetopt_args_info *args_info);
     
     /**
      * Save the contents of the option struct into a (text) file.
      * This file can be read by the config file parser (if generated by gengetopt)
      * @param filename the file where to save
      * @param args_info the option struct to save
      * @return 0 if everything went fine, NON 0 if an error took place
      */
     int cmdline_parser_file_save(const char *filename,
       struct gengetopt_args_info *args_info);
     
     /**
      * Print the help
      */
     void cmdline_parser_print_help(void);
     /**
      * Print the full help (including hidden options)
      */
     void cmdline_parser_print_full_help(void);
     /**
      * Print the detailed help (including hidden options and details)
      */
     void cmdline_parser_print_detailed_help(void);
     /**
      * Print the version
      */
     void cmdline_parser_print_version(void);
     
     /**
      * Initializes all the fields a cmdline_parser_params structure 
      * to their default values
      * @param params the structure to initialize
      */
     void cmdline_parser_params_init(struct cmdline_parser_params *params);
     
     /**
      * Allocates dynamically a cmdline_parser_params structure and initializes
      * all its fields to their default values
      * @return the created and initialized cmdline_parser_params structure
      */
     struct cmdline_parser_params *cmdline_parser_params_create(void);
     
     /**
      * Initializes the passed gengetopt_args_info structure's fields
      * (also set default values for options that have a default)
      * @param args_info the structure to initialize
      */
     void cmdline_parser_init (struct gengetopt_args_info *args_info);
     /**
      * Deallocates the string fields of the gengetopt_args_info structure
      * (but does not deallocate the structure itself)
      * @param args_info the structure to deallocate
      */
     void cmdline_parser_free (struct gengetopt_args_info *args_info);
     
     /**
      * Checks that all the required options were specified
      * @param args_info the structure to check
      * @param prog_name the name of the program that will be used to print
      *   possible errors
      * @return
      */
     int cmdline_parser_required (struct gengetopt_args_info *args_info,
       const char *prog_name);
     
     extern const char *cmdline_parser_enum_opt_values[];  /**< @brief Possible values for enum-opt. */
     
     
     #ifdef __cplusplus
     }
     #endif /* __cplusplus */
     #endif /* CMDLINE1_H */
     

First of all, notice that the argv parameter (typically corresponding to the homonimous argument of your program's main function) is declared as char ** and not as char *const *22. Actually, the version of getopt_long in libc uses prototypes with char *const *argv that are incorrect because getopt_long and getopt_long_only can permute argv; this is required for backward compatibility (e.g., for LSB 2.0.1)23. So, it is better to declare argv as char ** in the generated parser functions.

The <option>_given field is set to 1 when an argument for <option> has been specified (otherwise it is 0)24. This fields also counts the times a multiple option is specified (see Multiple Options). If the option accepts an argument and it is not of flag type The <option>_arg field is set to the value passed at the command line. The <option>_arg field has the corresponding C type specified in the file passed to gengetopt.

Notice that if an option has a default value, then the corresponding <option>_arg will be initialized with that value but the corresponding <option>_given will NOT be initialized to 1. Thus, <option>_given will effectively inform you if the user has specified that command line option.

The additional field <option>_orig is always a string containing the original value passed at the command line. This may be different, for instance, in case of numerical arguments: gengetopt converts the passed value (a string) into the corresponding numerical type; due to conversions, float representations, etc., this may not correspond exactly to the original value passed at command line. It can also be different when enumerated options are used (see above): in particular the <option>_arg field will contain a value taken from the specified list, while <option>_orig contains the (non-ambiguous) prefix specified at the command line.

The user can always access this original value by using <option>_orig instead of <option>_arg, as he sees fit25. For instance, gengetopt itself uses the original value when it saves the command line options into a file (see the _file_save function in the following). However, apart from very specific command line processing, the user might hardly need the <option>_orig field, and can be always safely use <option>_arg.

The <option>_help contains the string (concerning this very option) that is printed when --help command line is given.

If it is of flag type, only the field <option>_flag is generated.

The strings cmdline_parser_purpose and cmdline_parser_usage contain the purpose as specified in the input file and the generated “usage” string as printed when --help command line is given. Finally, the string array cmdline_parser_help contains the strings (one for each option) printed when --help command line is given (this array is terminated by a null string element). If hidden options are used also the cmdline_parser_full_help array is available (containing also help strings concerning hidden options). If at least one option has details, then the cmdline_parser_detailed_help array is available (containing also help strings concerning hidden options and details for options). All these strings can be used by the programmer to build a customized help output26.

Even if <option>_given is 0, the corresponding <option>_arg is set to default value (if one has been specified for <option>). However, in this case, the <option>_orig is set to NULL.

Notice that by default the generated function is called cmdline_parser (see the command line options below, to override this name), and it takes the arguments that main receives and a pointer to such a struct, that it will be filled. Another version, cmdline_parser2, can be specified more arguments. Since you typically need this second version only in conjunction with other “kinds” of parsers such as configuration files and multiple parsers, you can find more details about it in Configuration files.

IMPORTANT: The array passed to the parser function (that in turn is passed to getopt_long is expected to have in the first element (of index 0) the name of the program that was invoked. This will be used, for instance, for printing possible errors.

cmdline_parser_free can be called to deallocate memory allocated by the parser for string and multiple options.

cmdline_parser_init can be called to initialize the struct (it is not mandatory, since it is done automatically by the command line parser).

cmdline_parser_file_save27 can be used to save the command line options into a file. The contents of this file are consistent with the configuration files (Configuration files). Notice that if an option has a default value, this option will be saved into the file only if it was passed explicitly at command line (or read from a configuration file), i.e., default values will not be saved into the file. Alternatively, you can use cmdline_parser_dump28 that takes as the first parameter an already open stream (FILE *) instead of a file name.

And here's how these functions can be used inside the main program:

     /* main1.cc */
     /* we try to use gengetopt generated file in a C++ program */
     /* we don't use autoconf and automake vars */
     
     #include <iostream>
     #include "stdlib.h"
     
     #include "cmdline1.h"
     
     using std::cout;
     using std::endl;
     
     int
     main (int argc, char **argv)
     {
       gengetopt_args_info args_info;
     
       cout << "This one is from a C++ program" << endl ;
       cout << "Try to launch me with some options" << endl ;
       cout << "(type sample1 --help for the complete list)" << endl ;
       cout << "For example: ./sample1 *.* --funct-opt" << endl ;
     
       /* let's call our cmdline parser */
       if (cmdline_parser (argc, argv, &args_info) != 0)
         exit(1) ;
     
       cout << "Here are the options you passed..." << endl;
     
       for ( unsigned i = 0 ; i < args_info.inputs_num ; ++i )
         cout << "file: " << args_info.inputs[i] << endl ;
     
       if ( args_info.funct_opt_given )
         cout << "You chose --funct-opt or -F." << endl ;
     
       if ( args_info.str_opt_given )
         cout << "You inserted " << args_info.str_opt_arg << " for " <<
           "--str-opt option." << endl ;
     
       if ( args_info.int_opt_given )
         cout << "This is the integer you input: " <<
           args_info.int_opt_arg << "." << endl;
     
       if (args_info.flag_opt_given)
         cout << "The flag option was given!" << endl;
     
       cout << "The flag is " << ( args_info.flag_opt_flag ? "on" : "off" ) <<
         "." << endl ;
     
       if (args_info.enum_opt_given) {
         cout << "enum-opt value: " << args_info.enum_opt_arg << endl;
         cout << "enum-opt (original specified) value: "
             << args_info.enum_opt_orig << endl;
       }
     
       if (args_info.secret_given)
         cout << "Secret option was specified: " << args_info.secret_arg
             << endl;
     
       cout << args_info.def_opt_arg << "! ";
     
       cout << "Have a nice day! :-)" << endl ;
     
       cmdline_parser_free (&args_info); /* release allocated memory */
     
       return 0;
     }
     

Now you can compile main1.cc and the cmdline1.c generated by gengetopt and link all together to obtain sample1 executable:

     gcc -c cmdline1.c
     g++ -c main1.cc
     g++ -o sample1 cmdline1.o main1.o

(Here we assume that getopt_long is included in the standard C library; see Installation and No getopt_long).

Now let's try some tests with this program:

     $ ./sample1 -s "hello" --int-opt 1234
     This one is from a C++ program
     Try to launch me with some options
     (type sample1 --help for the complete list)
     For example: ./sample1 *.* --funct-opt
     Here are the options you passed...
     You inserted hello for --str-opt option.
     This is the integer you input: 1234.
     The flag is off.
     Have a nice day! :-)

You can also pass many file names to the command line (this also shows how flags work):

     $ ./sample1 *.h -i -100 -x
     This one is from a C++ program
     Try to launch me with some options
     (type sample1 --help for the complete list)
     For example: ./sample1 *.* --funct-opt
     Here are the options you passed...
     file: cmdline1.h
     file: cmdline2.h
     file: cmdline.h
     file: getopt.h
     This is the integer you input: -100.
     The flag is on.
     Have a nice day! :-)

And if we try to omit the --int-opt (or -i), which is required, we get an error:

     $ ./sample1
     This one is from a C++ program
     Try to launch me with some options
     (type sample1 --help for the complete list)
     For example: ./sample1 *.* --funct-opt
     sample1: `--int-opt' (`-i') option required!

Now, let's test the enumerated options, notice the use of a prefix for specifying an acceptable value, and the difference between the actual passed value and the one recorded in <option>_arg:

     $ ./sample1 -i 10 --enum-opt h
     ...
     enum-opt value: hello
     enum-opt (original specified) value: h
     ...

While the next one raises an ambiguity error (between "bar" and "bye"):

     $ ./sample1 -i 10 --enum-opt b
     ...
     ./sample1: ambiguous argument, "b", for option `--enum-opt'

Here is the output of --help of the parser generated from sample1.ggo by specifying the following options to gengetopt: --long-help -u --show-required (see Invoking gengetopt for further explanation for these command line options).

     This one is from a C++ program
     Try to launch me with some options
     (type sample1 --help for the complete list)
     For example: ./sample1 *.* --funct-opt
     sample1 2.0
     
     Usage: sample1 -iINT|--int-opt=INT [-h|--help] [--detailed-help] [--full-help]
              [-V|--version] [-sfilename|--str-opt=filename] [-mINT|--my-opt=INT]
              [--flag-opt] [-F|--funct-opt] [--long-opt=LONG] [--def-opt=STRING]
              [--enum-opt=STRING] [-DINT|--dependant=INT] [FILES]...
     
       -h, --help              Print help and exit
           --detailed-help     Print help, including all details and hidden options,
                                 and exit
           --full-help         Print help, including hidden options, and exit
       -V, --version           Print version and exit
       -s, --str-opt=filename  A string option, for a filename
     
     A brief text description before the other options.
     
       -m, --my-opt=INT        Another integer option, this time the description of
                                 the option should be "quite" long to require
                                 wrapping... possibly more than one wrapping :-)
                                 especially if I
                                 require a line break
       -i, --int-opt=INT       A int option (mandatory)
     
     more involved options:
       the following options
       are more complex
     
           --flag-opt          A flag option  (default=off)
       -F, --funct-opt         A function option
     
     last option section:
           --long-opt=LONG     A long option
           --def-opt=STRING    A string option with default  (default=`Hello')
           --enum-opt=STRING   A string option with list of values  (possible
                                 values="foo", "bar", "hello", "bye"
                                 default=`hello')
       -D, --dependant=INT     option that depends on str-opt
     
     An ending text.

Notice how filename is printed instead of STRING for the option --str-opt (since typestr was used in the sample1.ggo file) and how the description of --my-opt is wrapped to 80 columns, and how the \n is actually interpreted as a newline request. Also the usage string is wrapped. Moreover, since -S,--secret is an hidden option (See Hidden options.) it is not printed; if you wanted that to be printed, you should use --full-help. The option --func-opt has also the details, but they are not printed with --help.

Finally, notice how the text strings are printed in the help output (and the empty line after the “more involved options” section achieved with an empty text string).

Instead, here is the output of --detailed-help of the parser generated from sample1.ggo. You may want to compare this output with the one produced by --help (See Output of --help.); in particular, you may notice that the hidden option --secret is actually printed and the details of --func-opt are printed too:

     This one is from a C++ program
     Try to launch me with some options
     (type sample1 --help for the complete list)
     For example: ./sample1 *.* --funct-opt
     sample1 2.0
     
     Usage: sample1 -iINT|--int-opt=INT [-h|--help] [--detailed-help] [--full-help]
              [-V|--version] [-sfilename|--str-opt=filename] [-mINT|--my-opt=INT]
              [--flag-opt] [-F|--funct-opt] [--long-opt=LONG] [--def-opt=STRING]
              [--enum-opt=STRING] [-DINT|--dependant=INT] [FILES]...
     
       -h, --help              Print help and exit
           --detailed-help     Print help, including all details and hidden options,
                                 and exit
           --full-help         Print help, including hidden options, and exit
       -V, --version           Print version and exit
       -s, --str-opt=filename  A string option, for a filename
     
     A brief text description before the other options.
     
       -m, --my-opt=INT        Another integer option, this time the description of
                                 the option should be "quite" long to require
                                 wrapping... possibly more than one wrapping :-)
                                 especially if I
                                 require a line break
       -i, --int-opt=INT       A int option (mandatory)
     
     more involved options:
       the following options
       are more complex
     
           --flag-opt          A flag option  (default=off)
       -F, --funct-opt         A function option
     
       A function option is basically an option with no argument.  It can be used,
       e.g., to specify a specific behavior for a program.
     
       Well, this further explanation is quite useless, but it's only to show an
       example of an option with details, which will be printed only when
       --detailed-help is given at the command line.
     
     last option section:
           --long-opt=LONG     A long option
           --def-opt=STRING    A string option with default  (default=`Hello')
           --enum-opt=STRING   A string option with list of values  (possible
                                 values="foo", "bar", "hello", "bye"
                                 default=`hello')
       -S, --secret=INT        hidden option will not appear in --help
       -D, --dependant=INT     option that depends on str-opt
     
     An ending text.

If you're curious you may want to take a look at the generated C file cmdline1.c.

You may find other examples in /prefix/share/doc/gengetopt/examples or in the tests of the source tarbal.


Next: , Previous: Basic Usage, Up: Top

3 Invoking gengetopt

This is the output of gengetopt --help:

     gengetopt
     
     This program generates a C function that uses getopt_long function
     to parse the command line options, validate them and fill a struct.
     
     Usage: gengetopt [OPTIONS]...
     
       -h, --help                    Print help and exit
           --detailed-help           Print help, including all details and hidden
                                       options, and exit
       -V, --version                 Print version and exit
     
     Main options:
     
       -i, --input=filename          input file (default std input)
       -f, --func-name=name          name of generated function
                                       (default=`cmdline_parser')
       -a, --arg-struct-name=name    name of generated args info struct
                                       (default=`gengetopt_args_info')
       -F, --file-name=name          name of generated file  (default=`cmdline')
           --output-dir=path         output directory
           --header-output-dir=path  header output directory
           --src-output-dir=path     source output directory
       -c, --c-extension=ext         extension of c file  (default=`c')
       -H, --header-extension=ext    extension of header file  (default=`h')
       -l, --long-help               long usage line in help
           --default-optional        by default, an option is considered optional if
                                       not specified otherwise
       -u, --unamed-opts[=STRING]    accept options without names (e.g., file names)
                                        (default=`FILES')
     
     The parser generated is thought to be used to parse the command line arguments.
     However, you can also generate parsers for configuration files, or strings that
     contain the arguments to parse, by using the following two options.
     
       -C, --conf-parser             generate a config file parser
       -S, --string-parser           generate a string parser (the string contains
                                       the command line)
     
     Additional options:
     
       -G, --include-getopt          adds the code for getopt_long in the generated
                                       C file
       -n, --no-handle-help          do not handle --help|-h automatically
           --no-help                 do not add --help|-h automatically
       -N, --no-handle-version       do not handle --version|-V automatically
           --no-version              do not add --version|-V automatically
       -e, --no-handle-error         do not exit on errors
           --show-required[=STRING]  in the output of help will specify which
                                       options are mandatory, by using the optional
                                       passed string  (default=`(mandatory)')
       -g, --gen-version             put gengetopt version in the generated file
                                       (default=on)
           --set-package=STRING      set the package name (override package defined
                                       in the .ggo file)
           --set-version=STRING      set the version number (override version
                                       defined in the .ggo file)
           --show-help               show the output of --help instead of generating
                                       code
           --show-full-help          show the output of --full-help (i.e., including
                                       hidden options) instead of generating code
           --show-detailed-help      show the output of --detailed-help (i.e.,
                                       including details and hidden options) instead
                                       of generating code
           --show-version            show the output of --version instead of
                                       generating code
     
     Please refer to the info manual for further explanations.

The options should be clear; in particular:

--func-name
if no --func-name is given, cmdline_parser is taken by default;
--output-dir
if no --output-dir29 is given, the files are generated in the current directory;
--src-output-dir
--header-output-dir
With these options30 the generated C file and the corresponding generated header files can be generated in different directories;
--arg-struct-name
allows to specify the name of the generated struct for command line arguments (default is gengetopt_args_info)
--long-help
the “Usage” line reports all the options; this may be unpleasant if options are many;
--default-optional
If this command line option is given, by default, options are considered optional (if not explicitly specified otherwise). Otherwise, options are considered mandatory (if not explicitly specified otherwise).
--unamed-opts
the program will accept also options without a name, which, in most case, means that we can pass many file names to the program (see the example in Basic Usage, where we call sample1 *.h). You can specify an optional description for these additional names (default is FILES).
--no-handle-help
--no-handle-version
if --no-handle-help (--no-handle-version) is given the command line option --help|-h (--version|-V) is not handled automatically, so the programmer will be able to print some other information; then the function for printing the standard help (version) response can be used; this function is called <parser-name>_print_help (<parser-name>_print_version), where <parser-name> is the name specified with --func-name or the default, cmdline_parser. In case hidden options are used, See Hidden options, also the function <parser-name>_print_full_help will be generated; if details are used for at least one option, then also the function <parser-name>_print_detailed_help will be generated. Notice that, although the programmer can handle these options manually, the parser will return after finding one of these options: the other command line options, if any, will be ignored. In case you want to have full control on --help|-h, --version|-V, you should use the following options:
--no-help
--no-version
With these options31 you can disable the automatic addition of options --help|-h and --version|-V, respectively. The programmer will then be able to add these options in the input file and handle them as he sees fit. Notice that --no-help will also disable the automatic options --detailed-help and --full-help. The programmer can still define options with short character h and V as he wants, but he cannot define options help and version, unless he specifies --no-help and --no-version, respectively (otherwise an error will be printed). An example using these options and manually handles --help and --version can be found in test_manual_help_cmd.ggo and test_manual_help.c in the examples directory.
--no-handle-error
if --no-handle-error is given, an error in the parsing does not provoke the exit of the program; instead, since the parser function, in case of an error, returns a value different 0, the program can print a help message, as gengetopt itself does in case of an error (try it!).
--show-required
if --show-required is given, possibly with a string, in the output of --help will be made explicit which options are actually required, See Basic Usage.
--gen-version
is a flag (default on) that when disabled does not put in the output file the gengetopt version (it is useful for testing purposes).
--conf-parser
Detailed in Configuration files.
--string-parser
Detailed in String Parsers and Multiple Parsers.
--include-getopt
Adds the code for getopt_long into the generated parser C file. This will make your generated parser much bigger, but it will be compiled in any system, even if getopt_long is not part of the C library where your program is being compiled. See also No getopt_long.
--show-help
--show-full-help
--show-version
only make gengetopt show the output of --help, --full-help and --version command lines without generating any code, See Automatically added options. For instance, I use the --show-help option to generate a texinfo file with the output of help (this also shows an example of use of --set-package and --set-version):
          ../src/gengetopt --show-help -i ../src/cmdline.ggo \
             --set-package="gengetopt" \
             --set-version="" > help_output.texinfo

You may have already guessed it: gengetopt uses gengetopt itself for command line options, and its specification file is cmdline.ggo in the source directory. In particular the command line for gengetopt itself is generated with the following command:

     gengetopt --input=cmdline.ggo --no-handle-version \
               --no-handle-help --no-handle-error

Indeed when --help|-h is passed on the command line, gengetopt will call cmdline_parser_print_help() and then the lines for reporting bugs. When --version|-V is passed, it will call cmdline_parser_print_version() and then prints a copyright. If an error occurs it prints a message on the screen:

     $ ./gengetopt --zzzz
     ./gengetopt: unrecognized option `--zzzz'
     Run gengetopt --help to see the list of options.


Next: , Previous: Invoking gengetopt, Up: Top

4 Terminology

An argument is an element of the argv array passed into your C or C++ program by your operating system.

An option is an argument that begins with -, or --.

A value is an argument, or part of an argument, that is associated with a particular option (an option may also not accept any value). For example, in

     > ls --width=80

ls is called with one argument, --width=80, which is an option that has a value, 80, while in

     > ls --width 80

ls is called with two arguments, --width, which is an option, and 80 which might or might not be a value. In this case, whether the 80 is treated as a value associated with the preceding --width option, or as the name of a file to list depends on how ls parses the --width option.

The order in which options are specified is usually unimportant:

     > ls -a -l
     > ls -l -a

both do exactly the same thing.

An parameter is an argument that is not an option. For example, in

     > cp --archive source dest

cp is called with three arguments, the option --archive, the parameter source, and the parameter dest. Unlike options, the order in which parameters are specified usually is important:

     > cp --archive --verbose source dest
     > cp --verbose --archive source dest
     > cp --archive source --verbose dest
     > cp --archive --verbose dest source

The first three cp commands do the same thing, but the fourth one is completely different.

If you're new to Gengetopt, you may wish to skip the rest of this section. It goes into more detail about different sorts of options, and how they are parsed.

Note that some parameters may begin with - or --. Equivalently, not all arguments that begin with - or -- are options. Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.  Consider

     > ls -- -file
     > tar -c -f -
p>-- are options.