From 77137b1496d46dd515486ff651d9fd7c476a089a Mon Sep 17 00:00:00 2001 From: Benabadji Mohammed Salim Date: Sat, 27 Oct 2018 16:25:36 +0100 Subject: [PATCH] fix usage example and separated into two example (#20195) --- guide/english/bash/bash-rm/index.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/guide/english/bash/bash-rm/index.md b/guide/english/bash/bash-rm/index.md index 1ad3b58d7c..5aa83c2ffa 100644 --- a/guide/english/bash/bash-rm/index.md +++ b/guide/english/bash/bash-rm/index.md @@ -4,7 +4,19 @@ title: Bash rm ## Bash command: rm -**Delete a File/Directory** ,for example `rm hello`. +### Usage + +**Delete a File** + +```bash +rm +``` + +**Delete a Directory** + +```bash +rm -R +``` There are few commonly used arguments: