更新一些笔记

This commit is contained in:
2026-06-30 22:02:28 +08:00
parent a7132b4779
commit 26c9b207af
32 changed files with 245 additions and 88 deletions
@@ -0,0 +1,15 @@
# 反引号/飘号:\`
作用:把包裹的内容作为命令执行
示例:
- echo \`pwd\`
# 重定向符 >
作用:
- >:将左侧命令的结果,覆盖写入到右侧指定的文件中
- >>:将左侧命令的结果,追加写入到右侧指定的文件中
示例:
- echo "this is a added line" >> test.txt