Skip to main content
edited tags
Link
Gilles 'SO- stop being evil'
  • 865.3k
  • 205
  • 1.8k
  • 2.3k
deleted 6 characters in body
Source Link
slm
  • 379.7k
  • 127
  • 793
  • 897

I want to find all man pages for commands that begin with whwh. But I do not understand why the following keyword does not work.

  man -f "wh"

Also if I put

  man chmod

in man page of chmodchmod, it has the word "symbolic", so I put

  man -f "symbolic"

but chmodchmod command does not show up in the results.

inIn short, how do I find , search/search commands or command description by inside-word contents? I know how to find a certain words after I get the man page, using // character, but I want to find all man pages with the search word.

Thanks,

I want to find all man pages for commands that begin with wh. But I do not understand why the following keyword does not work.

  man -f "wh"

Also if I put

  man chmod

in man page of chmod, it has the word "symbolic", so I put

  man -f "symbolic"

but chmod command does not show up in the results

in short, how do I find , search commands or command description by inside-word contents? I know how to find a certain words after I get the man page, using / character, but I want to find all man pages with the search word.

Thanks,

I want to find all man pages for commands that begin with wh. But I do not understand why the following keyword does not work.

  man -f "wh"

Also if I put

  man chmod

in man page of chmod, it has the word "symbolic", so I put

  man -f "symbolic"

but chmod command does not show up in the results.

In short, how do I find/search commands or command description by inside-word contents? I know how to find a certain words after I get the man page, using / character, but I want to find all man pages with the search word.

Source Link

find all commands with wh, find by part of keyword in man page

I want to find all man pages for commands that begin with wh. But I do not understand why the following keyword does not work.

  man -f "wh"

Also if I put

  man chmod

in man page of chmod, it has the word "symbolic", so I put

  man -f "symbolic"

but chmod command does not show up in the results

in short, how do I find , search commands or command description by inside-word contents? I know how to find a certain words after I get the man page, using / character, but I want to find all man pages with the search word.

Thanks,