cp: add Chinese translation (#8133)

pull/1/head
xBLACKICEx 2022-06-24 13:48:56 +02:00 committed by GitHub
parent 944c6daeb7
commit 70b1ad7e23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

16
pages.zh/common/ln.md Normal file
View File

@ -0,0 +1,16 @@
# ln
> 创建指向文件和目录的链接。
> 更多信息:<https://www.gnu.org/software/coreutils/ln>.
- 创建指向文件或目录的符号链接:
`ln -s {{/路径/到/文件或目录}} {{路径/到/符号链接}}`
- 覆盖现有的符号链接以指向其他文件:
`ln -sf {{/路径/到/新文件}} {{路径/到/符号链接}}`
- 创建文件的硬链接:
`ln {{/路径/到/文件}} {{路径/到/硬链接}}`