this post was submitted on 27 Mar 2025
999 points (90.8% liked)

linuxmemes

24192 readers
1552 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     
    you are viewing a single comment's thread
    view the rest of the comments
    [–] ulterno 0 points 5 days ago* (last edited 5 days ago) (1 children)

    Yeah, one big problem of man I found was the severe lack of explanation of what the command is mainly intended to do. It's as if the user is expected to run the man after knowing what purpose a specific program exists for, which, I guess is what it is intended for. I tend to rely on the package manager's information and other similar sources for that information and man mainly for determining the exact usage.

    I don't at all expect man to be useful for someone who can just follow written instructions.
    The reason being than man is just supposed to tell the user, what typy stuff needs to be done for specific functionality. And most programs tend to be doing some small thingy and not fulfilling the user's whole requirement in one go.
    Meaning, to be happy with just man, one needs to be able to create a solution for themselves by properly fitting little parts and that is already more than half way to being able to do programming.

    Your man -a intro example and what followed, made me more confused than before of what you were trying to say, so I am just trying to go with the feel of it for now.

    ...

    Maybe knowing that you can use / and then whatever string of text to find something in the man page (because it uses less to paginate the output) would be useful for some of what you said. So you can do /-a and press Enter to start searching for "-a". And the reason for it being so far is because it is in the "OPTIONS" section.

    I now feel like someone who reads a lot of legal documents would be fine with man pages. Was this format made by someone in that field?

    [–] [email protected] 2 points 4 days ago

    Yeah I'm okay with the basic navigation options. The primary point is that man pages do look like they had written by someone who does not do technical writing. Whether that's someone coming from a law background, programming, or whatever.

    It's not written for an end user who wants to know how to use the tools they have available. It will tell you what a command "does", sometimes, but it doesn't explain itself. It presumes a certain amount of pre-existing knowledge, or familiarity with the syntax of man writers.

    For another example, the man for ls repeatedly lists options referencing "implied" entries without ever explaining what "implied" means in this context. It presupposes that the reader knows what that term means. I know what an implication is in an English class, and the antonym for "implied" is "explicit", but in a man page? No clue. Not like there's reference to or examples of "explicit" entries to contrast with "implied" entries. You just have to know what it means in context, or figure it out some other way.