更新 Shell 流编辑器AWK.md

This commit is contained in:
wxin 2024-08-18 19:49:59 +08:00
parent 57d99a4959
commit ac36c7022c
1 changed files with 2149 additions and 2149 deletions

View File

@ -1,4 +1,4 @@
# 05-Shell 流编辑器 AWK
# Shell 流编辑器 AWK
## 一、AWK 简介
@ -42,7 +42,7 @@ awk 'BEGIN{ commands } pattern{ commands } END{ commands }'
下图是 AWK 的工作流程
![img](assets/20170719154838100.png)
![img](https://oss-wxin-resource.oss-cn-beijing.aliyuncs.com/%E5%9B%BE%E7%89%87/Awk/1.png)
- 通过关键字 BEGIN 执行 BEGIN 块的内容,即 BEGIN 后花括号 **{}** 的内容。
- 完成 BEGIN 块的执行开始执行body块。