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

26
pages.zh/common/stow.md Normal file
View File

@@ -0,0 +1,26 @@
# stow
> 符号链接管理器。
> 常用于管理点文件dotfiles
> 另请参见: `chezmoi``tuckr``vcsh``homeshick`。
> 更多信息: <https://www.gnu.org/software/stow>。
- 将所有文件递归符号链接到给定目录:
`stow --target={{path/to/target_directory}} {{file1 directory1 file2 directory2}}`
- 从给定目录递归删除符号链接:
`stow --delete --target={{path/to/target_directory}} {{file1 directory1 file2 directory2}}`
- 模拟以查看结果会是什么样子:
`stow --simulate --target={{path/to/target_directory}} {{file1 directory1 file2 directory2}}`
- 删除并重新符号链接:
`stow --restow --target={{path/to/target_directory}} {{file1 directory1 file2 directory2}}`
- 排除与正则表达式匹配的文件:
`stow --ignore={{regular_expression}} --target={{path/to/target_directory}} {{file1 directory1 file2 directory2}}`