Spyke
ani.social

It will delete everything in the directory after that, without asking for further confirmation.

8
0xKesharareply
lemmy.dbzer0.com

Unless it's on /, where preserve-root should be kicking in, unless the bypass flag is used (can't remember this one)

9
Havatrareply
lemmy.zip

Not all systems have the preserve-root flag enforced, actually... I accidentally did the rm -rf / in a bash script (the variable for the path returned empty), and it irreversibly deleted a bunch of my system, including sudo and a big part of /etc, before I realized and did Ctrl+C. However the damage was done, rendering the system both unusable and unbootable. Fortunately I managed to recover some data, as the drive was not encrypted.

Edit: Yes, like a fool I ran the script as sudo... I am now older and wiser.

7
0xKesharareply
lemmy.dbzer0.com

What distro was this out of curiosity? As far as I'm aware preserve-root enforcement comes from upstream coreutils

1
Havatrareply
lemmy.zip

Iirc, it was Debian 10 (Buster). I thought they enforced it (rm did support it at the time), but perhaps it was tricked by using an empty variable or something?

1

Ahhh, I just re-read your comment, and yeah that would have been the case.

I think another quick bypass without using the proper flag could be to use a wildcard (for example, rm -rf /*), I think that might work too maybe

2

I didn't personally do this one, but I once worked at a job where I was tasked with updating a kickstart file from RHEL6 to 7. I don't remember the details, but in the postscript, there was a variable that was set in 6 but not 7. That variable was then used in a command like rm -rf /${variable}.

It took me a little while to figure out why every system imaged with that kickstart was emptying its own filesystem.

1
feddit.org

No, it does nothing.

$ mkdir test
$ cd test
~/test$ touch 1 2 3 4 5
~/test$ rm -rf
~/test$ ls
1  2  3  4  5

If you dont specify the -f option, which among other things tells rm to be quiet, it throws an error:

$ rm -r
rm: missing operand
Try 'rm --help' for more information.
3
remonreply
ani.social

Because you're using it on nothing.

$ mkdir test
$ cd test
~/test$ touch 1 2 3 4 5
~/test$ cd ..
$ rm -rf test
$ ls

No more test folder.

1
remonreply
ani.social

What are you talking about? The does exactly what I said it does.

It only does nothing for you because you used it incorrectly (in the wrong folder without the required argument).

2
feddit.org

The question is:

what happens when you give the command in the command line rm -rf ?

rm -rf * or here rm -rf test are different commands.

3
remonreply
ani.social

rm is the command, -rf are the flags and "test" is an required argument. So no, they are not different commands.

2

You have it backwards.

rm -fr /* removes the French language pack that comes preinstalled on your system.

/j

7

Short answer: Nothing

Long answer: It is part of a command that deletes everything. The only thing missing is the argument specifying what to delete. Examples:

rm -rf *
rm -rf /some/directory

It's somewhat (in)famous because it'll do so without asking for confirmation. The only exception is rm -rf / on a modern distro which will complain that you're attempting to delete EVERYTHING on the system. In the olden days it'd just do it, but these days it tells you to add --no-preserve-root as well if you really wish to do so.

3

You reached the end

what happens when you give the command in the command line rm -rf ? | Spyke