Linked Questions
12 questions linked to/from Why don't shell builtins have proper man pages?
0 votes
1 answer
444 views
man set is not found in bash? [duplicate]
I am using bash I wanted to read the documentation of set But when i typed man set,it is showing No manual entry for set But when i code set hit="COVID19" echo $1 it prints as hit=COVID19 How ...
1 vote
3 answers
425 views
Why doesn't set or export have a man page? [duplicate]
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?
-1 votes
1 answer
263 views
Manual entry for history missing... `man history` [duplicate]
I'm trying to figure out what's going on with my history... but I can't find the manual history -h returns nothing man history returns a level 8 history manual, not the bash one we all use.
87 votes
2 answers
21k views
Can I get individual man pages for the bash builtin commands? [duplicate]
Is there anywhere you can download a manpage for every builtin commands? I know you can just use help or man bash and search to find info about it, but I want them separated, so I can just do man ...
6 votes
5 answers
8k views
missing man pages of some commands
Typing man alias gives me No manual entry for alias The same thing goes for export and eval. At first I thought it only happens to shell built-in commands but man echo gives me the man page. Except ...
12 votes
2 answers
17k views
Bash wait for all subprocesses of script
I have a script with for i in 1 2 3 4; do do_something $i & done And when I call it, it terminates before all do_something terminated. I found this question with many different answers. ...
7 votes
3 answers
2k views
Why is the manual for 'where' command not available
I recently came across the command where, which provides the actual path of executables in Linux. I was aware of which, whereis, locate and find, but not where. I want to know when this command got ...
6 votes
3 answers
3k views
Replace uppercase to lowercase except first letter of each word in specific line
I want to replace names that I received in uppercase letters only. The names are mixed with other information which should stay as it is. AUTH: at the beginning of the line identifies it as a line ...
10 votes
6 answers
906 views
How do I know if the man page I'm looking at is the correct one?
For example, [fakename]$ type echo echo is a shell builtin But man echo gives me the GNU coreutils version of echo. What's the easiest way to tell if the man page I'm looking at is the correct one, i....
2 votes
3 answers
534 views
How do I make the 'man' utility as comprehensive as ss64.com?
The 'man' utility that comes with a Debian distro is not as comprehensive as ss64.com, and in environment like cygwin, it is even more so. Is there a software or a script that will make my 'man' more ...
11 votes
1 answer
1k views
regarding portable sed -e... d b or ! b?
In this edit Stéphane Chazelas POSIXifies (again) my sed formatting by inserting an -expression break and another -expression statement. Now, I might just ask him why in the comments, I suppose, but ...
0 votes
1 answer
423 views
umask does not have -S option
I'm trying to use umask -S to show the current mask in symbolic form (per man umask on my system, which gives me the page BASH_BUILTINS(1)). But umask doesn't seem to behave as the manpage claims: ...