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 |
their is a file1,file2 and i want to append file1 data to file2?
What do know about tee command and its usage?
what will be the output of ls ~/..
How to open a Database using Unix Command Please Do Reply
How can you copy files or directories?
What is the unix command to confirm a remote host is alive or not?
How can you create a symbolic link to a file or directory?
What is grep command in unix with examples?
What command will bring user back to their home directory in UNIX?
How do I run a bash script?
How does pipe () work?
What is command substitution?