Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SASS VUE GEN AI SCIPY CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING BASH

Bash awk - Pattern Scanning and Processing Language

Using the awk Command

The awk command is used for pattern scanning and processing language.

It's useful for handling text files and used for data extraction and reporting.


Basic Usage

The awk command is powerful for text processing.

For example, you can use it to extract specific fields from a file or perform calculations.

All examples below use the example_data.csv file:

id,Created,Amount,Currency,Description,Customer
1,2024-11-01,100,USD,Payment,John Doe
2,2024-11-02,200,EUR,Refund,Jane Smith
3,2024-11-03,150,USD,Purchase,Emily Davis
4,2024-11-04,175,GBP,Subscription,Michael Brown

To print the first column of a file, use awk -F"," '{print $1}' filename:

Example: Print First Column

awk -F"," '{print $1}' example_data.csv
# Output:
# id
# 1
# 2
# 3
# 4

Options

The awk command has options to change how it works:

  • -F - Set what separates the data fields
  • -v - Set a variable to be used in the script
  • -f - Use a file as the source of the awk program

Field Separator

The -F option allows you to define the field separator for processing data.

This is useful when dealing with CSV files or data with specific delimiters.

Example: Field Separator

awk -F"," '{print $1}' example_data.csv
# Output:
# id
# 1
# 2
# 3
# 4

Assign Variable

The -v option lets you assign a variable to be used within the awk script.

This is helpful for passing external values into the script.

Example: Assign Variable

awk -v var="Amount:" '{print var, $3}' example_data.csv
# Output:
# Amount: Amount
# Amount: 100
# Amount: 200
# Amount: 150
# Amount: 175

Using awk for Data Manipulation

Awk can perform complex data manipulation tasks.

For example, awk '{sum += $3} END {print sum}' example_data.csv calculates the sum of the Amount column.

Example: Data Manipulation

awk -F"," '{sum += $3} END {print sum}' example_data.csv
# Output:
# 625

Common Errors and Troubleshooting

When using awk, you might encounter errors such as:

  • "awk: syntax error" - Check your command syntax.
  • "awk: cannot open file" - Ensure the file path is correct and accessible.

Debugging tips include using print statements to check variable values and logic flow.



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.