📌  相关文章
📜  mawk 打印文件内容 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:28.853000             🧑  作者: Mango

代码示例1
### note '{ print }' '{ print $0 }' '1' all are same ###
awk '{ print }' /path/to/file
awk '{}1' /path/to/file
awk '1' /path/to/file
awk '{ print $0 }' /path/to/file
awk '{}1' /etc/passwd
awk '{print $0}' /etc/hosts
awk '{print}' /etc/hosts