Loading
Home ›
Tech Tip: Fun With Gawk
Feb 15, 2010 By James Hinnant
in
When grep and sed aren't enough, gawk may provide the extra horsepower that you need. The following tip contains a sampling of some of the things one might do with gawk.
Extract the last column from a text file, whitespace-separated:
cat myfile | gawk '{print $NF}'
or:
gawk '{print $NF}' myfile
List counts of files owned by each user in the current directory:
/bin/ls -l | \
gawk 'NR > 1 {counts[$3]++;}
END {for (s in counts) {
printf(" %-15s : % 5d\n",
s, counts[s]);}}' | \
sort
Kill your processes (one use is to kill a hung login if you can remotely log in to the workstation from another machine):
ps -elf | \
gawk -v me="$USER" '$3 == me {print $4}' | \
egrep -v $$ | \
xargs -i@@ kill -9 @@; kill -9 $$
______________________
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Well spotted. I've corrected
36 min 31 sec ago - This is a great program. We
3 hours 36 min ago - No Air for Linux
5 hours 26 min ago - HEWLETT PACKARD created
5 hours 36 min ago - HEWLETT PACKARD created
5 hours 38 min ago - very helpful :)
6 hours 28 sec ago - I'll give it a whirl
14 hours 34 min ago - TFPT, don't you mean TFTP!? I
23 hours 3 min ago - wunderbar!!
23 hours 21 min ago - Lubuntu on a USB key
1 day 13 hours ago





Comments
thanks
Thanks for the tips, especially pkill (which is new with Solaris 7; 1998! :) ).
The file count routine I use for counting source files in the current directory, so strange filenames are not an issue (also I find find to be kind of slow).
Here is the online manual for gawk: http://www.gnu.org/software/gawk/manual/
Here is a little program people might remember coding from FORTRAN class; maybe it can help put the baby to sleep:
echo 100 1 10 0.01 | gawk '{amp = $1; freq = $2; cycles = $3; tdelta = $4; for (i = 0; i <= 2 * 3.14159 * cycles; i += 2 * 3.14159 / 360) {printf("%*s\n", int((amp/2.0) * sin(i * freq) + (amp/2.0)), "*"); system("sleep " tdelta); }}'
What does this have to do
What does this have to do with Fortran? I use Fortran every day, and have no idea what you're talking about. Also, I was born in '84, long after punch cards and FORTRAN IV etc., which may explain my confusion.
don't parse output of ls
Too many odd things can be in file names, spaces, newlines, etc.
It's a rare case that all you want is a list of file names. In most cases you want to do something to the files based on their names, and if that's the case, 'find' can be a better tool, or maybe ' stat -c %n [glob]'.
Start learning basic unix commands before playing with awk
Sorry, but there is no need to use (g)awk here. I really like (g)awk, but your examples are just poor. Ok, maybe first one is a typical case for awk.
You forgot about dot files, but second one can be replaced with:
ls -Al | sed '1d;s/\([^ \t]\+[ \t]\+\)\{2\}//;s/[ \t].*//' | sort | uniq -cor even better:
Third one (really badly and also wrongly implemented) is a perfect case for pkill:
I can agree that your second example might be faster than mine, but it's irrelevant here.
Regards.