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
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.
Of course :3
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