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

28
pages.zh/common/shred.md Normal file
View File

@@ -0,0 +1,28 @@
# shred
> 通过覆盖文件安全删除数据。
> 更多信息:<https://www.gnu.org/software/coreutils/shred>。
- 覆盖一个文件:
`shred {{path/to/file}}`
- 覆盖一个文件并在屏幕上显示进度:
`shred --verbose {{path/to/file}}`
- 覆盖一个文件,用零代替随机数据:
`shred --zero {{path/to/file}}`
- 指定覆盖次数 [n]
`shred --iterations {{25}} {{path/to/file}}`
- 覆盖一个文件并删除它:
`shred --remove {{path/to/file}}`
- 覆盖一个文件 100 次,最后用零进行一次覆盖,覆盖后删除文件,并在屏幕上显示详细进度:
`shred -vzun 100 {{path/to/file}}`