答え1
マンページなし
$ cygcheck -f /usr/bin/kill
cygwin-3.5.1-1
したがって、このプログラムはcygwinパッケージに属します。
$ cygcheck -l cygwin |grep kill
/usr/bin/kill.exe
そしてマンページもありません。しかし、プログラムに直接助けを求めることができます
$ /usr/bin/kill --help
Usage: kill [-fW] [-signal] [-s signal] pid1 [pid2 ...]
kill -l [signal] | -L
Send signals to processes
-f, --force force, using win32 interface if necessary
-l, --list print a list of signal names
-L, --table print a formatted table of signal names
-s, --signal send signal (use kill --list for a list)
-W, --winpid specified pids are windows PIDs, not Cygwin PIDs
(use with extreme caution!)
-h, --help output usage information and exit
-V, --version output version information and exit