-
Implement the following commands:
-v --verbose
-h --help
-f --file
-o --output
Notes:
Using strcmp() at the moment, research how to prevent dubious actions from user input.
-
The `--self-test` command line option has the short option `-t` but `t` is missing from the `getopt_long` call and hence `-t` is not recognised.
Can be fixed by adding `t` to the `getopt_long` call…
-
I just noticed that our getopt implementation, taken from glibc and modified for wchar, allows unambiguous long option abbreviations.
That means `string match --reg` works even tho the option is `-…
-
Due to this, `install_base` fails and we can't build.
https://metacpan.org/source/LDS/GD-2.56/Build.PL#L5
-
Consider an example:
$ cat ./test.pl
#!/usr/bin/perl
use strict;
use warnings;
use Getopt::Long qw( :config no_ignore_case );
use DDP;
printf( "Getopt::Long…
-
I see the [kerfuffle](https://github.com/sciurius/perl-Getopt-Long/commit/258074ddb2f8960eb1c74a5b20d6ea7263c3bb13) that resulted from the previous attempt to "fix" optional arguments (and ended up br…
-
I have this code:
```bash
while getopts_long ':remoteHost: toDir:' OPTKEY; do
case ${OPTKEY} in
'remoteHost')
REMOTE_HOST="${OPTARG}"
;;
'toDir')
…
-
**Environment:** Windows 7 SP1. ByeDPI v0.13.1+ at least.
**Reproduce Steps:**
Examples use `--auto=torst`, so run proxy with `ciadpi.exe -i 127.0.0.1 -A=t -T 1 -s 4`.
**Expected Result:** It wor…
-
I want to search for the literal string `+1` but the obvious command line does something strange:
```
% ack -Q '+1'
ack: No regular expression found.
```
I can reproduce this also with current de…
-
It seems, that Debian guys haven't reported that bug upstream, but they've got a patch that's essential for many distributions: http://anonscm.debian.org/cgit/pkg-perl/packages/libalien-sdl-perl.git/t…
Civil updated
9 years ago