awk
- Powerful programming language
- Easy to whip up powerful scripts The general syntax is an expression followed by a command.
- loops over stdin
- Example: second column if the first column is a number greater than 10
$ awk '$1>10{print $2}' file.txt
0 comments:
Post a Comment