From c7b0f590c95c81d8a7d36f291e99613bd058e928 Mon Sep 17 00:00:00 2001 From: laolmstead <36485442+laolmstead@users.noreply.github.com> Date: Thu, 20 Dec 2018 20:59:33 -0500 Subject: [PATCH] Added new note regarding rm (#25711) Added a note regarding the "rm: remove regular file 'hello'?" prompt that occurs when using the rm command and explained that rm is a permanent action and should be used with caution. --- guide/english/bash/bash-rm/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/english/bash/bash-rm/index.md b/guide/english/bash/bash-rm/index.md index 86706eb1ce..7bb5b92e31 100644 --- a/guide/english/bash/bash-rm/index.md +++ b/guide/english/bash/bash-rm/index.md @@ -18,6 +18,8 @@ rm rm -R ``` +You will be prompted with **'rm: remove regular file ‘hello’?'** and will need to respond **'y'** before the file can be deleted. Use this command with caution because 'rm' is a permanent action. + There are few commonly used arguments: - `-r` , means to recursively delete all the folders inside a directory.