Oh no! 🤦♂️
-
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 ./~
-
This post did not contain any content.
We call this a whoopsie daisy.
-
This post did not contain any content.
ctrl-z... ctrl-z....CTRL-Z
-
This post did not contain any content.
Looks like ChatGPT will create more software jobs than it takes.
-
This post did not contain any content.
Same energy as Republican memes
-
Same, I didn't realize the directory I was deleting had a symlink to some root directory, at least until my mouse stopped working....
wrote on last edited by [email protected]Gnome used to have a link to your homedir in its settings directory.
I imagine plenty of people had tons of fun with that. But you need to modify
rm
to follow symlinks nowadays. -
OK I'll bite, how do you get rid of a literal ~ directory?
rm -rf "~" may work?
-
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...Wanted to reorganize my /mnt once and did an rm -r ... without unmounting the network share of production.
We have backups now. -
This post did not contain any content.
You can definitely do this redirecting output. I did this to myself and sighed about 2 seconds into it after realizing what I had done.
-
Looks like ChatGPT will create more software jobs than it takes.
AI will create the most cursed entry jobs humans have yet to see.
First job in the old days doing WordPress, managing someone's vomit inducing PHP? Gone.
Jobs with jQuery spaghetti calling dozens of asp APIs like a rat's nest no rat can traverse? Gone.
Welcome to the future: Fixing some "business" guy's vibe coded personal hell made just for you.
-
We call this a whoopsie daisy.
I often use the phrase "that's definitely an oopsie. Maybe even an oopsie daisy" at work
-
You can definitely do this redirecting output. I did this to myself and sighed about 2 seconds into it after realizing what I had done.
Creating a ~ folder isn't the tricky part. Removing it is.
(until you figure it out once)
-
AI will create the most cursed entry jobs humans have yet to see.
First job in the old days doing WordPress, managing someone's vomit inducing PHP? Gone.
Jobs with jQuery spaghetti calling dozens of asp APIs like a rat's nest no rat can traverse? Gone.
Welcome to the future: Fixing some "business" guy's vibe coded personal hell made just for you.
Asking AI to make my website in C.
Who's going to fix that "business" for me?
BTW, the AI says, it's 95% done and only needs some debugging, so you'll be paid accordingly. -
rm -rf "~" may work?
No, but single quotes will.
-
rm -rf "~" may work?
In case you are just testing it out, don't use
-rf
Your~
directory is most probably empty, so userm -d
instead, to prevent all footguns in case you put the wrong character in the end.-d, --dir remove empty directories
I feel safe doing
rm -d /
.
I feel safe doingsudo rm -d /
.Because it won't delete anything that has a file in it.
-
OK I'll bite, how do you get rid of a literal ~ directory?
Using Nautilus or Dolphin.
-
This post did not contain any content.
Stopped thinking