From 54f73c959609fb55e92f48b1403a919bd29dbbaf Mon Sep 17 00:00:00 2001 From: tasmainawolf <44279746+tasmainawolf@users.noreply.github.com> Date: Sun, 18 Nov 2018 00:38:59 +0800 Subject: [PATCH] Added more explanation for -f (#21863) --- guide/english/bash/bash-rm/index.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/guide/english/bash/bash-rm/index.md b/guide/english/bash/bash-rm/index.md index 6a2c237d05..70a321b608 100644 --- a/guide/english/bash/bash-rm/index.md +++ b/guide/english/bash/bash-rm/index.md @@ -21,15 +21,14 @@ rm -R 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. +- `-f` , means to forcefully delete any folder or file. - `-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. - ### More Information: * [Wikipedia](https://en.wikipedia.org/wiki/Rm_(Unix)) -* [Linux](https://linux.die.net/man/1/rm) +* [Man pages](http://man7.org/linux/man-pages/man1/rm.1.html) +* [Linux](https://linux.die.net/man/1/rm) \ No newline at end of file