• xthexder@l.sw0.com
    link
    fedilink
    arrow-up
    50
    ·
    1 day ago

    I once accidentally created a file with a newline character in it… it was pretty tricky to fix from command line.

    • lad@programming.dev
      link
      fedilink
      English
      arrow-up
      4
      ·
      13 hours ago

      I created a file with backspace in name, it was hard to understand why filename doesn’t match

    • GenderNeutralBro@lemmy.sdf.org
      link
      fedilink
      English
      arrow-up
      11
      ·
      24 hours ago

      I actually did this a lot on classic Mac OS. Intentionally.

      The reason was that you could put a carriage return as the first character of a file, and it would sort above everything else by name while otherwise being invisible. You just had to copy the carriage return from a text editor and then paste it into the rename field in the Finder.

      Since OS X / macOS can still read classic Mac HFS+ volumes, you can indeed still have carriage returns in file names on modern Macs. I don’t think you can create them on modern macOS, though. At least not in the Finder or with common Terminal commands.

    • toynbee@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      1 day ago

      I don’t conduct interviews very often, but when I do, one of my questions is always about interacting with files that have special characters in the filename.

    • Warl0k3@lemmy.world
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      23 hours ago

      Did you not just use tab? That’s the usual method of dealing with weird characters in filenames that I’ve found

      • Hupf@feddit.org
        link
        fedilink
        arrow-up
        1
        ·
        14 hours ago

        Too bad when there’s multiple files starting with and consisting mostly of e.g. kanji (when on a Latin keyboard).

      • xthexder@l.sw0.com
        link
        fedilink
        arrow-up
        3
        ·
        22 hours ago

        This was quite a while ago now, but I don’t think my shell escaped the tab complete properly, I remember it just printing a literal newline and evaluating it as a second command. I think there was other unicode in there too, otherwise I would have just typed it out. I had to do something with null terminated output and piping it in to mv, but I can’t remember what exactly.