#14 in Computer software books
Use arrows to jump to the previous/next product

Reddit mentions of The AWK Programming Language

Sentiment score: 4
Reddit mentions: 6

We found 6 Reddit mentions of The AWK Programming Language. Here are the top ones.

The AWK Programming Language
Buying options
View on Amazon.com
or
    Features:
  • Create perfect, evenly-shaped eyebrows in seconds with the 3 Second Brow eyebrow stamp! Just use our no-mess stamps and brow powder to create a full brow with a perfect arch.
  • The best part about the 3 Second Brow is that there is no mess, it lasts all day long and you are guaranteed to always get the perfect, natural evenly shaped eyebrows like never before!
  • Apply lightly for subtle color or add pressure for darker color. 3 Second Brow Eyebrow Stamp includes Light to Medium Brow Shade compact and 2 stamps (Structured Arch and Soft Arch)
  • Inventory and Producer, Taylor Baldwin’s enthusiasm and talent are unparalleled. She has also long been a trusted name in health and beauty, dedicated to seeking out (or inventing) the best products and tips!
  • Talyor Baldwin Health & Beauty is a brand you can trust to remain committed to providing quality innovations to improve your life.
Specs:
Height0.44 Inches
Length9.22 Inches
Number of items1
Weight0.220462262 Pounds
Width6.26 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 6 comments on The AWK Programming Language:

u/yorugua · 1 pointr/linux

if you are going to be programming awk, you need to get the book on it from A, W and K. Once you get a grasp of how AWK processes files, I think you'll go clear from there.

One Book

u/TheAntiRudin · 1 pointr/linux

This is still the definitive work on the subject.

u/colemaker360 · 1 pointr/bash

If you're open to learning a little awk, it can handle this in a breeze with a one-liner:

awk '/^\s*$/{next}{arr[$1]++}END{for (a in arr) print a, arr[a]}' test.log

Breaking it down:

  • awk assumes space is the field delimiter. You can pass a different delimiter if you want.
  • /^\\s*$/{next} means if the line is empty, ignore it
  • {arr[$1]++} means make an array that holds your counts. `$1` means the first field
  • If you have a header line that you don't want to count, change it to NR>1{arr[$1]++}
  • END{for (a in arr) print a, arr[a]} means at the end of processing, loop through the array you made and print the results

    awk is super powerful, and a lost art. This book is a great read if you can pick up a used one.
u/phao · 1 pointr/learnprogramming

I've started with Unix for Poets. It's pretty good =)

http://web.stanford.edu/class/cs124/kwc-unix-for-poets.pdf

There are books on this. Like "The Unix Programming Environment" and "The AWK Programming Language", both books include Brian Kernighan as one of the authors, who is one of the creators of AWK and a UNIX wizard from its roots (no pun intended).