Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 950 Bytes

CHANGELOG.md

File metadata and controls

25 lines (16 loc) · 950 Bytes

Changelog -- Advanced Bash-Scripting Guide

link--https://hangar118.sdf.org/p/bash-scripting-guide/changelog.html

Table of Contents: The Advanced Bash-Scripting Guide

RSS: feed.xml

2024-08-18, v0.2.1, Markdown rendering in AWK

link--(self)

Anybody deeply interested in shell scripting will at some point come across awk. In the spirit of do one thing and do it well, awk can be defined as a line-oriented processor with state. In contrast, sed is a line-oriented with rules that provide only a stateless form.

Rendering of Markdown format combines line-oriented approach with the need for a state. As a form of an introduction to awk, a rendering of Markdown is provided as a somewhat useful example.

Chapter: Awk Micro-Primer