killall(1): Handle -h and -? options as described in man page
authordczheng <dczheng21@outlook.com>
Thu, 11 Mar 2021 23:33:40 +0000 (23:33 +0000)
committerAaron LI <aly@aaronly.me>
Fri, 12 Mar 2021 13:11:04 +0000 (21:11 +0800)
commit2faa2b55024da00499acf75ba21453903de0c1fc
treeca4f8aaca35b21084a4a0c8170d134e17cf671b0
parenta2d71d01f5b798e1d53f2052232e39f6d185faf6
killall(1): Handle -h and -? options as described in man page

As described in its man page, options -h and -? are supported to print
the help text, same as -help option.  However, it didn't work and
killall(1) gave such errors:

killall: unknown signal h; valid signals: ...
killall: unknown signal ?; valid signals: ...

While there, update usage text to match the supported options.
usr.bin/killall/killall.c