为什么Oot在usleep -o中说“嘿”?


16

在Centos 6.6盒子上,我注意到了这一点...

[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!

虽然手册页没有提及...

OPTIONS
   --usage Show short usage message.

   --help, -?
          Print help information.

   -v, --version
          Print version information.

那么,为什么叫“ hey”?

编辑: 当然,这是一个复活节彩蛋,但似乎它可能带有故事。


1
为什么容易说o?
s3lph


2
“ Oot”可以是“ time of time”的缩写,在这种情况下这是有道理的。
马克·瓦格纳

Answers:


8

不确定复活节彩蛋,但是

为什么Oot在usleep -o中说“嘿”?

很简单,因为它在源代码中

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 }
    };

没有进一步说明为什么引入它。鸭子

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.