Flags to `command` are overly restricted
Brought to you by:
markhobley
POSIX sh declares more flags to the command
command than checkbashisms accepts. checkbashisms thinks that -p is the only POSIX compliant flag, but this actually accepts -v and -V. In fact, command -V <thing>
is the recommended POSIX portable equivalent to type <thing>
.