awk Flashcards
1
Q
awk ‘{ print $3 }’ abc.txt
A
2
Q
process file different ways
A
awk ‘{print “hello”, “world”}’ < abc.txt
cat abc.txt | awk ‘{print “hello”, “world”}’
awk ‘{ print $3 }’ abc.txt
process file different ways
awk ‘{print “hello”, “world”}’ < abc.txt
cat abc.txt | awk ‘{print “hello”, “world”}’