$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Bryan Green (bgreen_at_[hidden])
Date: 2007-07-19 21:31:22
"Christian Henning" writes:
>
> -I1"hello" wont work? In my project I have two input files. The long
> names are input_1 and input_2. It seems to me I cannot have numbers in
> the short version like: -I1"hello" -I2"world".
Hi,
I believe short options must be exactly one character. Thats the meaning of
"short option" in most contexts. I'm guessing, but to support parsing
'-I1', you'll probably have to follow the guidelines for "Non-conventional
Syntax" that are part the manual. Making it synonymous with --input_1 is
another problem.
-Bryan