^: add Chinese translation (#13104)

This commit is contained in:
Tianyi Tao 2024-06-23 23:58:15 +08:00 committed by GitHub
parent b4b05b6d3d
commit 140f8896dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

17
pages.zh/common/^.md Normal file
View File

@ -0,0 +1,17 @@
# Caret
> 在 Bash 中,有一个内建命令可以快速替换前一个命令中的字符串并执行结果。
> 相当于 `!!:s^string1^string2`
> 更多信息:<https://www.gnu.org/software/bash/manual/bash.html#Event-Designators>.
- 运行前一个命令,将`字符串1`替换为`字符串2`
`^{{字符串1}}^{{字符串2}}`
- 从前一个命令中移除`字符串1`
`^{{字符串1}}^`
- 在前一个命令中将`字符串1`替换为`字符串2`,并在末尾添加`字符串3`
`^{{字符串1}}^{{字符串2}}^{{字符串3}}`