From 4f02fdad574cb81f35ce6ded932e8be6547fd479 Mon Sep 17 00:00:00 2001 From: awais305 <33759138+awais305@users.noreply.github.com> Date: Sat, 3 Nov 2018 09:15:39 +0500 Subject: [PATCH] Added to arguments (#20577) --- guide/english/bash/bash-rm/index.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/guide/english/bash/bash-rm/index.md b/guide/english/bash/bash-rm/index.md index d4923363bd..6a2c237d05 100644 --- a/guide/english/bash/bash-rm/index.md +++ b/guide/english/bash/bash-rm/index.md @@ -22,11 +22,13 @@ There are few commonly used arguments: - `-r` , means to recursively delete all the folders inside a directory. - `-f` , means to forcefully delete anything folder or file. -- `-rf` , means that both arguments will be used together. +- `-i` , will ask before deleting the file. +- `-v` , will explain what was deleted. ### Warning -This command is capable of deleting many files at once with ease. This can be beneficial, but also dangerous. Use at your own risk +This command is capable of deleting many files at once with ease. This can be beneficial, but also dangerous. Use at your own risk. + ### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Rm_(Unix))