From 0be97242e64439fda5232452abd7a7d79660d6eb Mon Sep 17 00:00:00 2001 From: zerandomalt <33420785+zerandomalt@users.noreply.github.com> Date: Sat, 27 Oct 2018 04:21:02 +0100 Subject: [PATCH] Made the formatting more consistent (#19979) The formatting is now more consistent with the other files in the directory, also added a link to the Linux page. --- 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 8a83f897fd..1ad3b58d7c 100644 --- a/guide/english/bash/bash-rm/index.md +++ b/guide/english/bash/bash-rm/index.md @@ -8,8 +8,10 @@ title: Bash rm 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. +- `-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. ### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Rm_(Unix)) +* [Linux](https://linux.die.net/man/1/rm)