usleep -o에서 oot가 "안녕"이라고 말하는 이유는 무엇입니까?

usleep -o에서 oot가 "안녕"이라고 말하는 이유는 무엇입니까?

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.

그렇다면 왜 oot는 " hey"라고 말합니까?

편집하다: 이것은 확실히 부활절 달걀이지만, 이야기가 있는 달걀인 것처럼 보입니다.

답변1

부활절 달걀에 대해서는 잘 모르겠지만,

usleep -o에서 oot가 "안녕"이라고 말하는 이유는 무엇입니까?

간단하기 때문에원천:

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

왜 도입되었는지에 대한 추가 설명은 제공되지 않았습니다.오리.

관련 정보