What is awk used for?
When would you choose awk over sed?
when need to work with data that is organized in columns (or fields)
Why is awk good for processing columns?
because it automatically splits each line into fields based on a delimiter (like space, tab, comma, etc.).
In what situation would you use awk?
when dealing with tasks that require extracting, transforming, and summarizing data from structured text files (like CSV, log files)
Can awk be used for editing?
no