Difference between revisions of "Awk"
From Linuxintro
imported>ThorstenStaerk |
imported>ThorstenStaerk |
||
Line 12: | Line 12: | ||
* [http://man-wiki.net/index.php/Awk gawk man page] | * [http://man-wiki.net/index.php/Awk gawk man page] | ||
* [[cut]] | * [[cut]] | ||
+ | * [[Shell Scripting Tutorial]] |
Revision as of 21:04, 4 January 2012
awk is a command for string operations. For example, it allows you to show only the second column of a file. awk is not a simple command, but rather a programming language on its own. awk and gawk (for GNU awk) are used synonymously.
- Examples
Show only the second column of file.txt
awk '{print $2;}' file.txt
kill all processes of a user
ps --no-header -fu <username> | awk '{ print $2 }' | grep -v $$ | xargs kill
extract eth0's MAC address from ifconfig output
ifconfig | grep eth0 | awk '{ print $5 }'