This is the public portal for all IBM Z Hardware and Operating System related offerings. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
Yes, man will only search the 1st whatis file. Put this as an candidate for release work. thans
The suggestion to create a whatis in a new directory and then add that to the manpath as the 1st entry just causes the 'man -k ' to look in that whatis file instead of the ibm provided whatis file, not in addition to the ibm provided whatis.
At least that's what my test just now demonstrated.
There should be a whatis file in the manpage directory but not whatis.dovetail.
For example, adding a whatis file in a temp directory and the content is below:
u/suptcn >> cat tmp/whatis
hello - hello is an example for whatis addition by vendor
Add the directory in the the MANPATH
export MANPATH=/u/suptcn/tmp:$MANPATH
when you want to look for hello with man -k, it will work.
/u/suptcn >> man -k hello
hello - hello is an example for whatis addition by vendor
/u/suptcn >> man -k ll
hello - hello is an example for whatis addition by vendor
Can this address the problem?