this post was submitted on 16 Dec 2025
44 points (94.0% liked)
Linux
12623 readers
196 users here now
A community for everything relating to the GNU/Linux operating system (except the memes!)
Also, check out:
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
What do y'all use awk for really? 20 of using Linux, I've never had to use awk. And I've done a looot of scripting in my days. Anything from building my own clone of polybar using eww (with loads of scripts underneath), to automated systems for bulk handling of student assignments back at uni when I used to help out with grading and such.
What's awk good for that other standard utilities can't do?
I use awk instead of cut cause I can remember the syntax better.
ps aux | grep zoom | grep -v grep | awk '{print $2}' | xargs kill -9
You can get rid of those
greps, btw:Or just use
pgrep.grep is everywhere, pgrep is not