Linked Questions

40 votes
9 answers
5k views

I finally got fed up when wanting to read about bash's read and it's -s option with man bash. I found the right spot eventually (around line 4500), but it was a frustrating as usual, since both /read ...
hyde's user avatar
  • 1,318
9 votes
1 answer
4k views

So, I needed to figure out how "exec" works. However, doing man exec brings me to a 99% useless man page describing what bash builtins are. It of course also does this with many other man pages such ...
Earlz's user avatar
  • 2,272
2 votes
0 answers
64 views

I sometimes end up requesting the man page for a "basic" command like set or pushd that is built-in into the bash/zsh shell. So I type: man set …and I end up here: BASH_BUILTINS(1) ...
rugk's user avatar
  • 3,656
37 votes
3 answers
4k views

All shell builtins share the same manual page: BUILTIN(1) BSD General Commands Manual BUILTIN(1) NAME builtin, ! etc. Then there is a little text describing what ...
DisplayName's user avatar
2 votes
1 answer
1k views

How do I search man pages for options? I currently do this: /-<option> Example: To see what grep -i does, I do this: man grep and then /-i. Or, I can do this: man grep | grep .-i Is ...
Cohen K's user avatar
  • 53
1 vote
3 answers
420 views

I tried to look up info on export and set using man and was surprised to see there is nothing. Is this true, or is this something distribution specific? Why is the page missing?
Usagi's user avatar
  • 387
1 vote
1 answer
348 views

I learned that from an instruction: Co-processing does two things at the same time. It spawns a subshell in background mode and executes a command within that subshell. [root@iz2ze9wve43n2nyuvmsfx5z ...
Wizard's user avatar
  • 2,573
1 vote
2 answers
329 views

Refer to can-i-get-individual-man-pages-for-the-bash-builtin-commands: bashman () { man bash | less -p "^ $1 "; } This function will jump to the desired bash manual parameter section directly. ...
林果皞's user avatar
  • 5,596
0 votes
1 answer
423 views

I want to know what the -fix--missing argument does in the command below For example: man apt-get update -fix--missing Now if i type the command as it is above, it will be the same thing as typing ...
avg9957's user avatar
  • 225
7 votes
0 answers
241 views

I want to get output of any desired description or option from a man page. Example: I want to get the description for the autoclean option from the apt-get man page: Please suggest a command, ...
Pandya's user avatar
  • 25.7k