• HelloHotel@lemm.ee
      link
      fedilink
      English
      arrow-up
      5
      arrow-down
      1
      ·
      edit-2
      6 months ago

      It doesnt work for me,

      C:\Users\HelloHotel> rm -rf /*
      
      not recognized as an internal or external command, operable program or batch file.
      
      C:\Users\HelloHotel> 
      

      Why

      Edit: this is a joke, daily drive linux. (I even think cmd would give a diffrent error message than “not a command”) the child comments are an absolute shitshow

      • Astro@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        3
        ·
        6 months ago

        It’s a Linux command. It means Remove (rm) from the root folder (rf) everything, and don’t warn me about this action (/*)

        • soupuos@sopuli.xyz
          link
          fedilink
          English
          arrow-up
          5
          ·
          edit-2
          6 months ago

          I can’t tell if you’re joking or if I misunderstood what you wrote.

          It’s remove (rm) recursively (allow removing folders) (-r) and “force” (don’t prompt for confirmation, e.g. when removing write protected files) (-f) everything in the root folder (/*)

          With -r and -f getting combined into -rf of course.