It seems the Bash built-in help command help does some really strange globbing:
help readshows the documentation forread,readarrayandreadonly.help rea?shows only the documentation forread.help 'read$'doesn't work.help read | sed '/^read[^:]\+/,$d'is just silly.
Is there some more intuitive way to get only the read output?