Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Hands-On Data Science with the Command Line

You're reading from  Hands-On Data Science with the Command Line

Product type Book
Published in Jan 2019
Publisher Packt
ISBN-13 9781789132984
Pages 124 pages
Edition 1st Edition
Languages
Authors (3):
Jason Morris Jason Morris
Profile icon Jason Morris
Chris McCubbin Chris McCubbin
Profile icon Chris McCubbin
Raymond Page Raymond Page
Profile icon Raymond Page
View More author details

awk, sed, and tr

In this section, we will be looking at awk, sed, and tr.

awk

awk (including the gnu implementation, gawk) is designed for streaming text processing, data extraction, and reporting. An awk program is structured as a set of patterns that are matched, and actions to take when those patterns are matched:

pattern {action}
pattern {action}
pattern {action}

For each record (usually each line of text passed to awk), each pattern is tested to see whether the record matches, and if so, the action is taken. Additionally, each record is automatically split into a list of fields by a delimiter (any run of whitespace by default). The default action, if none is given, is to print the record. The default pattern is...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}