• c10l@lemmy.world
    link
    fedilink
    arrow-up
    5
    ·
    edit-2
    4 months ago

    I don’t mind the order of path, arguments and options, but what the hell is the deal with long arguments with a single dash? i.e. -name instead of —-name

  • frizop@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    4 months ago

    The year is 2024, I put esoteric use of the find command on my resume, it’s 1989…

  • sudo42@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    4 months ago

    Not an expert nor a historian, but my understanding is that ‘find’ goes back a long way (*nix has been around a while).

    Earlier commands such as find were created back before a lot of command/option syntax forms we know today were agreed to and standardized.

    Since ‘find’ has been around so long, we’ve just suffered its non-standard syntax rather than risk the chaos that would be unleashed by trying to fix it.

    If it makes you feel better, you can console yourself that you’re using one of the more arcane incantations of the elder *nix wizards.

      • sudo42@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 months ago

        Please try it again and let me know if this fixed it. Both versions work on my end.

        • CrayonRosary@lemmy.world
          link
          fedilink
          arrow-up
          3
          ·
          edit-2
          4 months ago

          It works now. It definitely didn’t before when using Sync for Lemmy. That kind of mistake wouldn’t have worked on the reddit website either. I had seen it a million times. Not sure if the Lemmy web site would handle it right.

          Both versions work on my end.

          I’m surprised to hear that.

          Markdown libraries normally see the closing parenthesis in the URL as the end of the link markdown syntax of [text](link). You had [text](link(stuff)) which is parsed as [text](link(stuff) A smarter markdown parser could handle it, so whatever app you were using might do that.

  • Hjalmar@feddit.nu
    cake
    link
    fedilink
    arrow-up
    1
    ·
    4 months ago

    What’s up with find? I’ve got so used to fd that I don’t understand what this is referring to

    • Björn Tantau@swg-empire.deOP
      link
      fedilink
      arrow-up
      2
      ·
      4 months ago

      When you want to find something in a different path than your current one you have to supply it as the first argument. When you try to do find -name foo.bar /path it will complain that the path should be the first argument. So it knows what you’re trying to do and instead of doing it it just complaints.