I know just the audience for this
I know just the audience for this
I know just the audience for this
You're viewing a single thread.
"I am sorry you're going through a hard time, but I'm sorry I cannot blow my brains out"
Great. It's learned how to be snarky.
Microsoft's copilot takes offense like a little bitch and ends the conversation if you call it useless. even though it's a fact.
the fucker can't do simple algebra but it gets offended when you insult it for not doing something fucking calculators do.
"How dare you call me useless after I return the same incorrect response for the 8th time even though you've told me I'm wrong 7 different ways! Come back when you can be more civil."
Sounds like reddit was part of the training data 😂
Should only be used with extreme caution and if you know what you are doing.
Ok. What is the actual use case for “rm -rf /“ even if you know what you are doing and using extreme caution? If you want to wipe a disk, there are better ways to do it, and you certainly wouldn’t want that disk mounted on / when you do it, right?
There probably isn't one and there really doesn't have to be one. The ability to do it is a side effect of the versatility of the command.
None. Remember that the response is AI generated. It's probabilistically created from people's writings. There are strong relations between that command and other 'dangerous commands.' Writings about 'dangerous commands ' oft contain something about how they should 'only be run by someone who knows what they are doing' so the response does too.
TWRP has an option "use rm -rf instead of formatting".
I always wondered why they included that!
I think it was something with some formatting command implementations being broken.
isn't the command meant to be used on a certain path? like if you just graduated high school, you can just run "rm -rf ~/documents/homework/" ?
Correct me if im wrong, i assume switch "-rf" is short for "Root File", for the starting point of recursion
No, -r and -f are two different switches. -r is recursive, used so that it also removes folders within the directory. -f is force (so overriding all confirmations, etc).
TIL
It's two switches. The f makes the operation forced. And the r makes the operation recursive.