Skip to content

Commit

Permalink
Update awk.md (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
XingwenZhang authored and jaywcjlove committed May 7, 2019
1 parent 336b155 commit 0cef809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/awk.md
Expand Up @@ -77,7 +77,7 @@ awk 'BEGIN{ commands } pattern{ commands } END{ commands }'
**示例**

```shell
echo -e "A line 1nA line 2" | awk 'BEGIN{ print "Start" } { print } END{ print "End" }'
echo -e "A line 1\nA line 2" | awk 'BEGIN{ print "Start" } { print } END{ print "End" }'
Start
A line 1
A line 2
Expand Down

0 comments on commit 0cef809

Please sign in to comment.