‘Well it’s only passing mv a list of–’ yeah yeah yeah, I know, and that’s why I’m calling bullshit. It should be massively harder to execute filenames. Even if 1970s decisions make that the eternal hideous default: the lack of any idiot-proof standard workaround is incomprehensible.

StackOverflow’s full of competing one-liners and people pointing out how each one is considered harmful. The least-skeezy options use exec. That sentence should make anyone recoil in horror.

This is not a filename problem. This is a tool problem. If a single printable character is going to silently expand into a list of names, then for god’s sake, having it put each name in quotes should be fucking trivial.

  • @mindbleachOP
    link
    14 months ago

    It expands *.jpg into a list of names.

    Which you’d think would mean mv "thing.jpg" "other thing.jpg", but no, it does mv thing.jpg other thing.jpg - and then chokes, because other is not a valid option or filename. Possibly after writing the contents of other thing.jpg onto the destination thing.jpg.

    If any filenames contain characters like ; or &, you better hope the next word doesn’t look like a command.

    • @[email protected]
      link
      fedilink
      54 months ago

      Which shell are you using? This does not happen in Bash, Zsh, or any modern shell I’m familiar with.

    • @[email protected]
      link
      fedilink
      1
      edit-2
      4 months ago

      What shell are you using? Is this exclusive to mv (and maybe other builtins)?

      Edit: also why would you ever want to move files like this, what is wrong with you

      • @mindbleachOP
        link
        -24 months ago

        Edit: also why would you ever want to move files like this, what is wrong with you

        … like what?

        The fuck do you mean, why would I want to move files in a terminal? Because I’m doing shit in a terminal! What, do you expect people to Super+E, find the directory they’re in, and drag-and-drop? I’m using tools that only exist in the command line.

        I’m using whatever GNOME Terminal came with Linux Mint 20 by default. StackOverflow answers sound like any POSIX terminal will do this. I assume it’s standard behavior.

        • @[email protected]
          link
          fedilink
          24 months ago

          I’m using whatever GNOME Terminal came with Linux Mint 20 by default.

          Should be bash. Type help it should tell you.

          StackOverflow answers sound like any POSIX terminal will do this. I assume it’s standard behavior.

          Link?

        • @[email protected]
          link
          fedilink
          1
          edit-2
          4 months ago

          I mean with * where you have no control of the order of the files and you never explicitly say which files are being moved. “yeah, just rename files into other files, I don’t fucking care lol” is what your command does