From c67218ec186127e20efadc6a27e83c43a81c491b Mon Sep 17 00:00:00 2001 From: Ashish Kumar Badtiya Date: Tue, 4 Apr 2017 23:14:21 +0530 Subject: [PATCH] Removed -f option for rm command (#14) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9622c1e..8c7a42c 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ Where `filename1` is the source path to the file and `filename2` is the destinat ### i. `rm` Removes a file. Using this command on a directory gives you an error. `rm: directory: is a directory` -In order to remove a directory you have to pass `-rf` to remove all the content of the directory recursively. +In order to remove a directory you have to pass `-r` to remove all the content of the directory recursively. ```bash rm filename ```