Hi
Run the command info then press / to do a regex search in your example enter compare and then press enter, just like vi, press the / and enter to continue your search. Then there is info info or man info
If you are unsure which command/executable you can use a keyword with apropos.
apropos «keyword»
You’re looking for a command/executable that can compare files then the keyword should be «compare»
apropos compare
The first field should be the name of the command/executable the second in enclosed with the ( and ) that is should be included when you want to read the man pages. For example apropos compare list cmp and the output looks like this.
cmp (1) - compare two files byte by byte
The command you should run is cmp and if you want to read the man pages add the 1 ie
man 1 cmp
Since you are using openSUSE which is a Linux system the long option with the help word should work.
There you go! Exactly what I was looking for! The comp /cmp was only an example, I find I’m often wanting to do something, and don’t know the command. This will be a whole lot easier!