Oh no! 🤦‍♂️
-
This post did not contain any content.
-
This post did not contain any content.
deserved tbh
-
This post did not contain any content.
The "Thought for 2 seconds" and "Stopped thinking" are hilarious to me
-
This post did not contain any content.
I did this once (for real, but without AI assistance)
-
This post did not contain any content.
It should have done sudo rm -rf /*
-
The "Thought for 2 seconds" and "Stopped thinking" are hilarious to me
I kinda thought they were in the wrong order, though: “rm -rf ~/“ should have been after “stopped thinking”.
-
I did this once (for real, but without AI assistance)
Reminds me of the time when I bind mounted my home dir in a chroot, then
rm -rf
ed the chroot when I no longer needed it... -
It should have done sudo rm -rf /*
For when you want to delete everything in the root directory, but absolutely need to keep the directory itself.
-
For when you want to delete everything in the root directory, but absolutely need to keep the directory itself.
Of course :3
-
I kinda thought they were in the wrong order, though: “rm -rf ~/“ should have been after “stopped thinking”.
I think it did 'rm -rf ~/' and crashed. Hence the 'stopped thinking'
-
This post did not contain any content.
Is this assisted
suicide? -
This post did not contain any content.
OK I'll bite, how do you get rid of a literal ~ directory?
-
OK I'll bite, how do you get rid of a literal ~ directory?
Should be
\~
in most shells, certainly bash. Usemkdir
andrmdir
when messing around to prevent accidents. -
I did this once (for real, but without AI assistance)
Same, I didn't realize the directory I was deleting had a symlink to some root directory, at least until my mouse stopped working....
-
This post did not contain any content.wrote on last edited by [email protected]
This is why the first thing I did when my company got us an agentic LLM was set up devcontainer.
-
Should be
\~
in most shells, certainly bash. Usemkdir
andrmdir
when messing around to prevent accidents.Saw this post this morning and was thinking about how to delete it ( while falling back asleep ). Escaping the ~, ofc that'd work! I feel so stupid now haha
-
This post did not contain any content.wrote on last edited by [email protected]
At least we know vibe coders will eventually destroy themselves.
-
It should have done sudo rm -rf /*
wrote on last edited by [email protected]So. Funny story. Back when I was incredibly new to Linux, I was trying to move everything from my downloads folder to somewhere else. So I navigated into the downloads directory on the command line and sent something like
"sudo mv /* ~/misc"
when I meant to type
"sudo mv ./* ~/misc"
Yea... That was a fun learning experience and hilarious way to utterly fuck everything on that machine. Luckily it was just an old laptop I'd installed Linux on to mess around and learn, no real damage done
-
OK I'll bite, how do you get rid of a literal ~ directory?
wrote on last edited by [email protected]prefix with path, and/or quotation
-
OK I'll bite, how do you get rid of a literal ~ directory?
rmdir ./~