https://store-images.s-microsoft.com/image/apps.52867.339df81f-1b3c-4348-97ba-686076b96c54.95e159a0-c4b0-4caf-9a23-db845b168955.0d4dac5f-7352-4ec0-9429-1ad318f4074b

Awk GNU

Autor: bCloud LLC

(1 hodnocení)

Version 5.2.1+ Free Support on Ubuntu 24.04

Awk GNU is a powerful command-line text processing and pattern-scanning utility designed for searching, extracting, and transforming structured text data. It is widely used in Linux and Unix environments for log analysis, report generation, and data manipulation tasks.

Features of GNU Awk:

  • Processes text files and standard input using pattern-action rules.
  • Supports field-based data extraction and transformation.
  • Includes built-in variables, functions, and arithmetic operations.
  • Ideal for log processing, reporting, and automation tasks.
  • Works seamlessly with pipes and other Unix command-line tools.
  • Fully CLI-based with no graphical interface or database dependency.

GNU Awk Usage

$ sudo su
$ awk --version          
  # Check GNU Awk version
$ echo "hello world" | awk '{print $2}'
  # Process standard input

Disclaimer: GNU Awk is an open-source utility maintained by the GNU Project and provided under the GNU General Public License (GPL). It is distributed "as is" without warranties. Users are responsible for correct usage, scripting logic, and compliance with applicable licenses.