what is the meaning of this command rm -rf /
what will it do ?
Answers were Sorted based on User's Feedback
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 |
Answer / monu verma
It will remove a directory including its subdirectories and
files
| Is This Answer Correct ? | 24 Yes | 0 No |
Answer / sailesh k
recursively forcely delete the objects even the subfolders
contains any files.
| Is This Answer Correct ? | 14 Yes | 0 No |
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 |
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 |
what will this do $cat > file.c ?(file.c is a file in current directory)
How to setup sudo, only can use for particular date & time only ( for solaris10 )
what are the differences between CUI and GUI interfaces?
52 Answers College School Exams Tests, HCL, HP, IBM, IBMR, NIIT, Talco, Wipro,
what are the different commands used to view the contents of a file?
what is the use of uniq commmand?
What is the use of the tee command?
What is the use of touch command in there?
what are filters?
What is command substitution?
What does 'mkdir' command do in UNIX?
how many types of file in unix?
34 Answers MNC, TCS,
How do you create a directory in UNIX?