From 13d6a7dcf3854607b8f06d2217840b2a939b8fe0 Mon Sep 17 00:00:00 2001 From: Starccy <452276725@qq.com> Date: Sun, 10 Mar 2019 20:32:03 +0800 Subject: [PATCH] attrib: add Chinese translation --- pages.zh/windows/attrib.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages.zh/windows/attrib.md diff --git a/pages.zh/windows/attrib.md b/pages.zh/windows/attrib.md new file mode 100644 index 0000000000..60bec0a599 --- /dev/null +++ b/pages.zh/windows/attrib.md @@ -0,0 +1,27 @@ +# attrib + +> 显示或修改文件和目录的属性. + +- 显示当前目录下所有文件的属性: + +`attrib` + +- 显示当前目录和其子目录下所有文件的属性: + +`attrib /S` + +- 显示当前目录和其子目录下所有文件和目录的属性: + +`attrib /S /D` + +- 为一个文件增加只读属性: + +`attrib +R {{document.txt}}` + +- 删除一个文件的系统和隐藏属性: + +`attrib -S -H {{document.txt}}` + +- 为一个目录增加隐藏属性: + +`attrib +H {{目录的路径}}`