Dlaczego oot nie mówi „hej” we śnie -o?

16

Na pudełku Centos 6.6 zauważyłem to ...

[root@abcd /]# usleep --help
Usage: usleep [microseconds]
  -v, --version     Display the version of this program, and exit
  -o, --oot         oot says hey!

Help options:
  -?, --help        Show this help message
  --usage           Display brief usage message
[root@abcd /]# usleep -o
oot says hey!

Podczas gdy strona podręcznika nie wspomina o tym ...

OPTIONS
   --usage Show short usage message.

   --help, -?
          Print help information.

   -v, --version
          Print version information.

Dlaczego więc nie mówi „ hey”?

Edycja: Z pewnością jest to pisanka, ale wygląda na to, że może to być historia.

nkthrasher
źródło
1
Dlaczego apt-get mówi muczenie?
s3lph
2
Twórcy
steve
2
„Oot” może być akronimem „poza czasem”, co ma w tym kontekście sens.
Mark Wagner,

Odpowiedzi:

8

Nie jestem pewien co do pisanki, ale

Dlaczego oot nie mówi „hej” we śnie -o?

proste, ponieważ jest w źródle :

struct poptOption options[] = {
        { "version", 'v', POPT_ARG_NONE, &showVersion, 0, 
        "Display the version of this program, and exit" },
        { "oot", 'o', POPT_ARG_NONE, &showOot, 0, 
        "oot says hey!" },
    POPT_AUTOHELP
        { 0, 0, 0, 0, 0 }
    };

Nic nie wskazuje na to, dlaczego został wprowadzony. kaczki .

Sebastian
źródło