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

29
pages.zh/openbsd/sed.md Normal file
View File

@@ -0,0 +1,29 @@
# sed
> 以可脚本化的方式编辑文本。
> 另见:`awk``ed`。
> 更多信息:<https://man.openbsd.org/sed.1>。
- 将所有输入行中的 `apple`(基本正则表达式)替换为 `mango`(基本正则表达式),并将结果打印到 `stdout`
`{{command}} | sed 's/apple/mango/g'`
- 执行特定的脚本 [f]ile并将结果打印到 `stdout`
`{{command}} | sed -f {{path/to/script.sed}}`
- 延迟打开每个文件,直到对输入行应用包含相关 `w` 函数或标志的命令:
`{{command}} | sed -fa {{path/to/script.sed}}`
- 将所有输入行中的 `apple`(扩展正则表达式)替换为 `APPLE`(扩展正则表达式),并将结果打印到 `stdout`
`{{command}} | sed -E 's/(apple)/\U\1/g'`
- 仅将第一行打印到 `stdout`
`{{command}} | sed -n '1p'`
- 将特定文件中的所有 `apple`(基本正则表达式)替换为 `mango`(基本正则表达式),并在原地覆盖原始文件:
`sed -i 's/apple/mango/g' {{path/to/file}}`