this post was submitted on 08 Jul 2023
202 points (95.1% liked)
Programmer Humor
32426 readers
894 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It's also helpful to note that “shell builtins” don't typically have man pages (at least for BASH). You can find help on these commands by typing
[builtin name] --help
or looking in the shell's man page or info doc (no one told me when I was learning, so I got confused as to why some of the more common commands didn't have man pages)