add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

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