Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

  1. Home
  2. Uncategorized
  3. when do you usually use the man page for a complex command line tool to answer a question you have?

when do you usually use the man page for a complex command line tool to answer a question you have?

Scheduled Pinned Locked Moved Uncategorized
200 Posts 155 Posters 239 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • b0rk@social.jvns.caB b0rk@social.jvns.ca

    when do you usually use the man page for a complex command line tool to answer a question you have? (like git, openssl, rsync, curl, etc)

    (edit: no need to say "i use --help then man")

    me@social.k3can.usM This user is from outside of this forum
    me@social.k3can.usM This user is from outside of this forum
    me@social.k3can.us
    wrote last edited by
    #41

    @b0rk I'm sure how to vote, but usually my order is:

    1. --help
    2. Google
    3. man page
    1 Reply Last reply
    0
    • b0rk@social.jvns.caB b0rk@social.jvns.ca

      when do you usually use the man page for a complex command line tool to answer a question you have? (like git, openssl, rsync, curl, etc)

      (edit: no need to say "i use --help then man")

      jyn@tech.lgbtJ This user is from outside of this forum
      jyn@tech.lgbtJ This user is from outside of this forum
      jyn@tech.lgbt
      wrote last edited by
      #42

      @b0rk usually —help first, then google or an llm to find the flags i’m interested in, then a man page for the details

      in the middle i’ll try things; if they work i’ll either stop there, or skip the intermediate steps and go straight to the man page to figure out what the general behavior is now that it’s working in this specific case

      1 Reply Last reply
      0
      • b0rk@social.jvns.caB b0rk@social.jvns.ca

        when do you usually use the man page for a complex command line tool to answer a question you have? (like git, openssl, rsync, curl, etc)

        (edit: no need to say "i use --help then man")

        preinheimer@phpc.socialP This user is from outside of this forum
        preinheimer@phpc.socialP This user is from outside of this forum
        preinheimer@phpc.social
        wrote last edited by
        #43

        @b0rk I usually start with a help command (usually shorter, probably covers what I need). the man page is like a tier 3 option.

        1 Reply Last reply
        0
        • b0rk@social.jvns.caB b0rk@social.jvns.ca

          i'm very curious about everyone who says "I'd look there first", if I want to figure out how to do something new I think I'll usually google how to do it rather than look at the man page, and then maybe later look at the man page to look up the details

          (I've gotten enough of these answers:
          - "I like that man pages don't require changing context"
          - "with the man page I know I have the right version of the docs")

          uastronomer@mastodon.monoceros.co.zaU This user is from outside of this forum
          uastronomer@mastodon.monoceros.co.zaU This user is from outside of this forum
          uastronomer@mastodon.monoceros.co.za
          wrote last edited by
          #44

          @b0rk It was a bit of a toss-up for me. Sometimes I'll go straight to man, other times straight to generic google alternative. Man has the advantage of being right there - I don't even have to change my window focus - and while it can be very dense, there's a good chance I'll find an answer in the introduction or the examples at the end. But often it's simply too dense and I'm more interested in quickly solving the problem right in front of me than mastering a new tool, and then I'll open a browser and do a search.

          The bad news for man pages though is that quality has definitely declined over the years. More modern packages are less likely to have a good man page, or sometimes don't have one at all. It's pretty obvious why, no sense complaining about it, but it can be annoying.

          b0rk@social.jvns.caB 1 Reply Last reply
          0
          • b0rk@social.jvns.caB b0rk@social.jvns.ca

            i'm very curious about everyone who says "I'd look there first", if I want to figure out how to do something new I think I'll usually google how to do it rather than look at the man page, and then maybe later look at the man page to look up the details

            (I've gotten enough of these answers:
            - "I like that man pages don't require changing context"
            - "with the man page I know I have the right version of the docs")

            polywolf@social.treehouse.systemsP This user is from outside of this forum
            polywolf@social.treehouse.systemsP This user is from outside of this forum
            polywolf@social.treehouse.systems
            wrote last edited by
            #45

            @b0rk usually Google just brings me to a online man page if it's a program that has an extensive man page or --help (git, curl, etc.). If I don't know the program has a good man page then I will Google.

            1 Reply Last reply
            0
            • b0rk@social.jvns.caB b0rk@social.jvns.ca

              when do you usually use the man page for a complex command line tool to answer a question you have? (like git, openssl, rsync, curl, etc)

              (edit: no need to say "i use --help then man")

              claudius@darmstadt.socialC This user is from outside of this forum
              claudius@darmstadt.socialC This user is from outside of this forum
              claudius@darmstadt.social
              wrote last edited by
              #46

              @b0rk i'm using manpage, when I am already on the terminal with a relatively complex command, and I just need that one extra option. I hit Ctrl+A to go to the start, type "man " (and leave all the rest of the command in place!) and hit enter. Man doesn't care about that stuff after the first arguement, so it's relatively convenient.

              1 Reply Last reply
              0
              • uastronomer@mastodon.monoceros.co.zaU uastronomer@mastodon.monoceros.co.za

                @b0rk It was a bit of a toss-up for me. Sometimes I'll go straight to man, other times straight to generic google alternative. Man has the advantage of being right there - I don't even have to change my window focus - and while it can be very dense, there's a good chance I'll find an answer in the introduction or the examples at the end. But often it's simply too dense and I'm more interested in quickly solving the problem right in front of me than mastering a new tool, and then I'll open a browser and do a search.

                The bad news for man pages though is that quality has definitely declined over the years. More modern packages are less likely to have a good man page, or sometimes don't have one at all. It's pretty obvious why, no sense complaining about it, but it can be annoying.

                b0rk@social.jvns.caB This user is from outside of this forum
                b0rk@social.jvns.caB This user is from outside of this forum
                b0rk@social.jvns.ca
                wrote last edited by
                #47

                @uastronomer when you say "it's pretty obvious why" what do you mean?

                (is it that with stack overflow & the internet generally it feels like there's less pressure to have good docs than when they were the only source of information?)

                uastronomer@mastodon.monoceros.co.zaU 1 Reply Last reply
                0
                • b0rk@social.jvns.caB b0rk@social.jvns.ca

                  i'm very curious about everyone who says "I'd look there first", if I want to figure out how to do something new I think I'll usually google how to do it rather than look at the man page, and then maybe later look at the man page to look up the details

                  (I've gotten enough of these answers:
                  - "I like that man pages don't require changing context"
                  - "with the man page I know I have the right version of the docs")

                  chupson@tech.lgbtC This user is from outside of this forum
                  chupson@tech.lgbtC This user is from outside of this forum
                  chupson@tech.lgbt
                  wrote last edited by
                  #48

                  @b0rk i tend to first try to find the answer in the man page, and if i can’t do so quickly i’ll search for it on the internet. and if that fails, i’ll read the man page more carefully

                  1 Reply Last reply
                  0
                  • vikxin@beach.cityV vikxin@beach.city

                    @b0rk if --help doesn't give enough info, man page is my second step

                    stepheneb@ruby.socialS This user is from outside of this forum
                    stepheneb@ruby.socialS This user is from outside of this forum
                    stepheneb@ruby.social
                    wrote last edited by
                    #49

                    @vikxin @b0rk

                    Same.

                    Also check my shell history

                    1 Reply Last reply
                    0
                    • b0rk@social.jvns.caB b0rk@social.jvns.ca

                      i'm very curious about everyone who says "I'd look there first", if I want to figure out how to do something new I think I'll usually google how to do it rather than look at the man page, and then maybe later look at the man page to look up the details

                      (I've gotten enough of these answers:
                      - "I like that man pages don't require changing context"
                      - "with the man page I know I have the right version of the docs")

                      csgraves@turtleisland.socialC This user is from outside of this forum
                      csgraves@turtleisland.socialC This user is from outside of this forum
                      csgraves@turtleisland.social
                      wrote last edited by
                      #50

                      @b0rk I've been using Linux since 1997 or so, with Slackware. I learned very early on that the only definitive source for the answer, or at least the first place one should look, is in the man pages.

                      I have never trusted any search engine, and nowadays, I certainly do not trust Google at all, especially with how evil the company is, and how they too force AI on everyone.

                      1 Reply Last reply
                      0
                      • b0rk@social.jvns.caB b0rk@social.jvns.ca

                        i'm very curious about everyone who says "I'd look there first", if I want to figure out how to do something new I think I'll usually google how to do it rather than look at the man page, and then maybe later look at the man page to look up the details

                        (I've gotten enough of these answers:
                        - "I like that man pages don't require changing context"
                        - "with the man page I know I have the right version of the docs")

                        boredzo@mastodon.socialB This user is from outside of this forum
                        boredzo@mastodon.socialB This user is from outside of this forum
                        boredzo@mastodon.social
                        wrote last edited by
                        #51

                        @b0rk It kind of depends on the question—usually my question is something like “what's the option to do such-and-such again?” which is easily answered by --help or the manpage.

                        When it's something more conceptual, then --help probably won't explain it and my first stop will be the manpage to see whether it does, because it's authoritative and I already have it. If that fails, then I'll try the web, and maybe a relevant book if I have one.

                        1 Reply Last reply
                        0
                        • b0rk@social.jvns.caB b0rk@social.jvns.ca

                          i'm very curious about everyone who says "I'd look there first", if I want to figure out how to do something new I think I'll usually google how to do it rather than look at the man page, and then maybe later look at the man page to look up the details

                          (I've gotten enough of these answers:
                          - "I like that man pages don't require changing context"
                          - "with the man page I know I have the right version of the docs")

                          astrid@physik.coolA This user is from outside of this forum
                          astrid@physik.coolA This user is from outside of this forum
                          astrid@physik.cool
                          wrote last edited by
                          #52

                          @b0rk I look a the man page if there is an option for what I want, usually searching for keywords I am interested in. However with git/ffmpeg I usually just google for what I need too. Their manpages are so full of options that I get easily overwhelmed. Some big manpages like bash's I've seen enough times to not get lost.

                          1 Reply Last reply
                          0
                          • b0rk@social.jvns.caB b0rk@social.jvns.ca

                            when do you usually use the man page for a complex command line tool to answer a question you have? (like git, openssl, rsync, curl, etc)

                            (edit: no need to say "i use --help then man")

                            talexb@fosstodon.orgT This user is from outside of this forum
                            talexb@fosstodon.orgT This user is from outside of this forum
                            talexb@fosstodon.org
                            wrote last edited by
                            #53

                            @b0rk Usually because my aging brain says, "Oh, that's the -s option", so I try that, and discover, No, it's not. Then I look in the man page, and discover it was actually the -S option. Well, half right?

                            1 Reply Last reply
                            0
                            • silvermoon82@wandering.shopS silvermoon82@wandering.shop

                              @vatine @b0rk
                              Yup, same. My first laptop ran qnx 4 and came with the man pages on paper (it was something like 1.5 shelf-metres of very nicely bound softcover books), and I was coming from MS-DOS and Win 3.1. I spent a lot of time poring over those manuals to learn even the most basic stuff like "how to 'dir'" and "how to quit elvis".

                              csgraves@turtleisland.socialC This user is from outside of this forum
                              csgraves@turtleisland.socialC This user is from outside of this forum
                              csgraves@turtleisland.social
                              wrote last edited by
                              #54

                              @silvermoon82 @vatine @b0rk where did you find something like that? Seems like a lot of books.

                              silvermoon82@wandering.shopS 1 Reply Last reply
                              0
                              • b0rk@social.jvns.caB b0rk@social.jvns.ca

                                i'm very curious about everyone who says "I'd look there first", if I want to figure out how to do something new I think I'll usually google how to do it rather than look at the man page, and then maybe later look at the man page to look up the details

                                (I've gotten enough of these answers:
                                - "I like that man pages don't require changing context"
                                - "with the man page I know I have the right version of the docs")

                                groxx@hachyderm.ioG This user is from outside of this forum
                                groxx@hachyderm.ioG This user is from outside of this forum
                                groxx@hachyderm.io
                                wrote last edited by
                                #55

                                @b0rk I search for tools where I already know the man page is unhelpful (either too small or there's just a million options that make a whole language to learn to do basic stuff).

                                Which is quite a lot tbh, but I do absolutely start out with the official documentation on practically everything. Answers and mistake-preventions are almost always found in there the quickest, because mistakes consume a ton of time.

                                1 Reply Last reply
                                0
                                • b0rk@social.jvns.caB b0rk@social.jvns.ca

                                  i'm very curious about everyone who says "I'd look there first", if I want to figure out how to do something new I think I'll usually google how to do it rather than look at the man page, and then maybe later look at the man page to look up the details

                                  (I've gotten enough of these answers:
                                  - "I like that man pages don't require changing context"
                                  - "with the man page I know I have the right version of the docs")

                                  scruss@xoxo.zoneS This user is from outside of this forum
                                  scruss@xoxo.zoneS This user is from outside of this forum
                                  scruss@xoxo.zone
                                  wrote last edited by
                                  #56

                                  @b0rk I use apropos first to find the manual pages around the subject. If it doesn't turn up anything, I hit the web (or 'apt-cache search' to see if there are packages that might help me)

                                  1 Reply Last reply
                                  0
                                  • b0rk@social.jvns.caB b0rk@social.jvns.ca

                                    i'm very curious about everyone who says "I'd look there first", if I want to figure out how to do something new I think I'll usually google how to do it rather than look at the man page, and then maybe later look at the man page to look up the details

                                    (I've gotten enough of these answers:
                                    - "I like that man pages don't require changing context"
                                    - "with the man page I know I have the right version of the docs")

                                    maxine@hachyderm.ioM This user is from outside of this forum
                                    maxine@hachyderm.ioM This user is from outside of this forum
                                    maxine@hachyderm.io
                                    wrote last edited by
                                    #57

                                    @b0rk if I’m already at least a little familiar with a tool, I would much rather look at the man page than search online. But this is partially influenced by the fact thay search got worse, but man pages actually did finally get better.

                                    1 Reply Last reply
                                    0
                                    • b0rk@social.jvns.caB b0rk@social.jvns.ca

                                      when do you usually use the man page for a complex command line tool to answer a question you have? (like git, openssl, rsync, curl, etc)

                                      (edit: no need to say "i use --help then man")

                                      vitu@bolha.usV This user is from outside of this forum
                                      vitu@bolha.usV This user is from outside of this forum
                                      vitu@bolha.us
                                      wrote last edited by
                                      #58

                                      @b0rk voted "other"

                                      Usually go for tldr. If needed, man page / --help

                                      1 Reply Last reply
                                      0
                                      • b0rk@social.jvns.caB b0rk@social.jvns.ca

                                        i'm very curious about everyone who says "I'd look there first", if I want to figure out how to do something new I think I'll usually google how to do it rather than look at the man page, and then maybe later look at the man page to look up the details

                                        (I've gotten enough of these answers:
                                        - "I like that man pages don't require changing context"
                                        - "with the man page I know I have the right version of the docs")

                                        b0rk@social.jvns.caB This user is from outside of this forum
                                        b0rk@social.jvns.caB This user is from outside of this forum
                                        b0rk@social.jvns.ca
                                        wrote last edited by
                                        #59

                                        i think part of the reason I'm feeling interested in man pages right now even though I rarely use them is that search has gotten so much worse, it's frustrating, and it makes it feel more appealing to have trustworthy sources with clear explanations

                                        jmax@mastodon.socialJ master_squinter@infosec.exchangeM qkslvrwolf@mastodon.socialQ minkiu@mastodon.socialM ryanparsley@mastodon.socialR 19 Replies Last reply
                                        0
                                        • b0rk@social.jvns.caB b0rk@social.jvns.ca

                                          when do you usually use the man page for a complex command line tool to answer a question you have? (like git, openssl, rsync, curl, etc)

                                          (edit: no need to say "i use --help then man")

                                          glenjamin@hachyderm.ioG This user is from outside of this forum
                                          glenjamin@hachyderm.ioG This user is from outside of this forum
                                          glenjamin@hachyderm.io
                                          wrote last edited by
                                          #60

                                          @b0rk when I happen to know it’s a good one (eg curl) - but I still usually read an online HTML version in my browser anyway

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups