浏览代码

Base: Add rm(1) manpage

networkException 3 年之前
父节点
当前提交
121bcc267d
共有 1 个文件被更改,包括 31 次插入0 次删除
  1. 31 0
      Base/usr/share/man/man1/rm.md

+ 31 - 0
Base/usr/share/man/man1/rm.md

@@ -0,0 +1,31 @@
+## Name
+
+rm - Remove files
+
+## Synopsis
+
+```**sh
+$ rm [options...] <path...>
+```
+
+## Description
+
+`rm` removes files specified in `path`.
+
+If a directory is specified in `path`, the `-r` (recursive) flag is required. Otherwise, an error occurs.
+
+## Options
+
+* `-r`, `--recursive`: Remove files and directories recursively
+* `-f`, `--force`: Do not prompt before removing
+* `-v`, `--verbose`: Display what files are removed
+
+## Examples
+
+```sh
+# Remove README.md file
+$ rm README.md
+
+# Remove cpp-tests directory
+$ rm -r cpp-tests
+```