what is the meaning of this command rm -rf /
what will it do ?

Answers were Sorted based on User's Feedback



what is the meaning of this command rm -rf / what will it do ?..

Answer / chitra

rm -rf removes the directory recursively and also forcefully.
r stands for recursively
f stands for forcefully

The above command can also be used for removing a file.

Is This Answer Correct ?    25 Yes 0 No

what is the meaning of this command rm -rf / what will it do ?..

Answer / monu verma

It will remove a directory including its subdirectories and
files

Is This Answer Correct ?    24 Yes 0 No

what is the meaning of this command rm -rf / what will it do ?..

Answer / sailesh k

recursively forcely delete the objects even the subfolders
contains any files.

Is This Answer Correct ?    14 Yes 0 No

what is the meaning of this command rm -rf / what will it do ?..

Answer / bharath kumar

this is used to delete the directoy even it is containing
files or sub folders.......

Is This Answer Correct ?    7 Yes 0 No

what is the meaning of this command rm -rf / what will it do ?..

Answer / sricharan

It is a very good question for a fresher to tackle.

rm -rf
yes ofcourse r stands for recursively
f stands for forcefully
and this is used to remove normalfiles, tarfiles, zip files
etc..

One more important thing is, it can be used in scripts
where in it works/ removes only if the file exists. If we
use rm filename in scripts, it removes if it exits else it
throws error message telling this file not exist. Hence
using rm -rf is better option for shell scripting than rm.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More Unix Commands Interview Questions

What is in grep command?

0 Answers  


What is ‘ps’ command for?

0 Answers  


Is command prompt unix?

0 Answers  


what will be the output of ls ~/..

27 Answers   ABC,


How we will execute previous command in vi editor?

8 Answers   Infosys,






Who wrote grep?

0 Answers  


What is awk used for?

0 Answers  


what is the difference between npar and vpar in HP-UX?

1 Answers   CSC,


What is the comma to display different lines that are found when compare two files?

0 Answers  


How do you grep a case insensitive?

0 Answers  


Why is shebang used?

0 Answers  


What is grep short for?

0 Answers  


Categories