1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 16:15:33 +02:00

mklink: add Chinese translation

This commit is contained in:
Starccy 2019-03-11 13:32:41 +08:00 committed by Starbeamrainbowlabs
parent 95aad28889
commit 2b63d42cd7

View file

@ -0,0 +1,19 @@
# mklink
> 创建符号链接.
- 创建指向文件的符号链接:
`mklink {{链接文件的路径}} {{源文件路径}}`
- 创建指向目录的符号链接:
`mklink /d {{链接文件的路径}} {{源目录路径}}`
- 创建指向文件的硬链接:
`mklink /h {{链接文件的路径}} {{源目录路径}}`
- 创建目录链接:
`mklink /j {{链接文件的路径}} {{源目录路径}}`