• @48954246
    link
    English
    20
    edit-2
    3 months ago

    Feels dangerous to run. What happens if the file already exists and has something important in it?

    touch -a is probably better

    • @gaterush
      link
      93 months ago

      The other command could just be printf '' >> file to not overwrite it. Or even simpler >>file and then interrupt

        • @[email protected]
          link
          fedilink
          63 months ago

          .“:>>” is “append null” right? Do you get a file with a single ASCII NUL or is it truly empty?

          • Trailblazing Braille Taser
            link
            fedilink
            143 months ago

            Not really. I believe : is the “true” builtin. So it’s like running a program that exits with zero and writes nothing to stdout. The >> streams the empty stdout into the named file.

        • @gaterush
          link
          33 months ago

          that’s awesome, did not know about that handy operator!

          • @[email protected]
            link
            fedilink
            33 months ago

            Yeah!

            it’s basically a noop, I use it as a placeholder when I’m writing a script, since bash doesn’t accept code blocks with no commands