GAWK: Effective AWK Programming: A User’s Guide for GNU Awk. 5.3 Ed

Описание
Коротко и по делу о том, что важно знать про gawk.
You might want to extract certain lines and discard the rest. Several kinds of tasks occur repeatedly when working with text files. Or you may need to make changes wherever certain patterns appear, but leave the rest of the file alone. The awk utility interprets a special-purpose programming language that makes it easy to handle simple data-reformatting jobs. Such jobs are often easy with awk.
This means that all properly written awk programs should work with gawk. The GNU implementation of awk is called gawk; if you invoke it with the proper options or environment variables, it is fully compatible with the POSIX1 specification of the awk language and with the Unix version of awk maintained by Brian Kernighan. So most of the time, we don’t distinguish between gawk and other awk implementations.
Using awk you can: Manage small, personal databasesGenerate reportsValidate dataProduce indexes and perform other document-preparation tasksExperiment with algorithms that you can adapt later to other computer languages In addition, gawk provides facilities that make it easy to:Extract bits and pieces of data for processingSort dataPerform simple network communicationsProfile and debug awk programsExtend the language with functions written in C or C++This book teaches you about the awk language and how you can use it effectively. You should already be familiar with basic system commands, such as cat and ls, as well as basic shell facilities, such as input/output (I/O) redirection and pipes.
This book, while describing the awk language in general, also describes the particular implementation of awk called gawk (which stands for “GNU awk”). Implementations of the awk language are available for many different computing environments. gawk runs on a broad range of Unix systems, ranging from Intel-architecture PC-based computers up through large-scale systems. gawk has also been ported to macOS, z/OS, Microsoft Windows (all versions), and OpenVMS.
На этом основные моменты по теме закрыты.
Поделиться
Частые вопросы
Можно ли скачать «GAWK: Effective AWK Programming: A User’s Guide for GNU Awk. 5.3 Ed» бесплатно?
Да, «GAWK: Effective AWK Programming: A User’s Guide for GNU Awk. 5.3 Ed» доступна для бесплатного скачивания на нашем сайте в формате PDF. Ссылка на файл находится на этой странице.
В каком формате и какого размера файл?
Книга предоставляется в формате PDF, размер файла 2,2 МБ.
Кто автор и когда вышла книга?
автор — Robbins Arnold D., издательство Independent publishing, год выпуска 2024, 611 страниц.
О чём книга «GAWK: Effective AWK Programming: A User’s Guide for GNU Awk. 5.3 Ed»?
Several kinds of tasks occur repeatedly when working with text files.