mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 13:45:59 +02:00
attrib: add Chinese translation
This commit is contained in:
parent
87eea83ec9
commit
13d6a7dcf3
1 changed files with 27 additions and 0 deletions
27
pages.zh/windows/attrib.md
Normal file
27
pages.zh/windows/attrib.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
# attrib
|
||||
|
||||
> 显示或修改文件和目录的属性.
|
||||
|
||||
- 显示当前目录下所有文件的属性:
|
||||
|
||||
`attrib`
|
||||
|
||||
- 显示当前目录和其子目录下所有文件的属性:
|
||||
|
||||
`attrib /S`
|
||||
|
||||
- 显示当前目录和其子目录下所有文件和目录的属性:
|
||||
|
||||
`attrib /S /D`
|
||||
|
||||
- 为一个文件增加只读属性:
|
||||
|
||||
`attrib +R {{document.txt}}`
|
||||
|
||||
- 删除一个文件的系统和隐藏属性:
|
||||
|
||||
`attrib -S -H {{document.txt}}`
|
||||
|
||||
- 为一个目录增加隐藏属性:
|
||||
|
||||
`attrib +H {{目录的路径}}`
|
Loading…
Add table
Reference in a new issue