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

21
pages.zh/common/disown.md Normal file
View File

@@ -0,0 +1,21 @@
# disown
> 允许子进程在它们所附加的 shell 之外继续存在。
> 另见 `jobs` 命令。
> 更多信息:<https://www.gnu.org/software/bash/manual/bash.html#index-disown>。
- 解除当前作业的关联:
`disown`
- 解除特定作业的关联:
`disown %{{job_number}}`
- 解除所有作业的关联:
`disown -a`
- 保持作业(不解除关联),但标记它以便在 shell 退出时不会接收到未来的 SIGHUP
`disown -h %{{job_number}}`