Files
bare-operating-system/packages/bare-os-coreutils/man/pages/awk.json
T
Raven Scott f8a0dad897 feat: kernel roadmap wave — bits4, policy v4, Pear/Bare compatibility
- protocol/booter: bits4 handshake, proc surfaces, boot policy v4, telemetry v4
- coreutils: nohup + ensure-man-pages; seed-man-pages fixes for extra pages
- kernel-runner: no static node:module (Pear); bare-module createRequire
- docs: handbook, reference, ADR, compatibility matrix, verify scripts
2026-04-04 02:51:33 -04:00

46 lines
971 B
JSON

{
"name": "awk",
"section": 1,
"title": "pattern scanning and processing language",
"synopsis": [
"awk [OPTION]... [OPERAND]..."
],
"description": "Pattern-directed scanning and processing. Engine in lib/awk-engine.js; not full POSIX awk.",
"options": [],
"keywords": [
"awk",
"pattern",
"field",
"script"
],
"seeAlso": [
{
"name": "sed",
"section": 1
},
{
"name": "grep",
"section": 1
}
],
"bareOsNotes": "See handbook ch.9 for divergence from Issue 7.",
"examples": [
{
"caption": "print column 1",
"code": "awk '{print $1}' file.txt"
},
{
"caption": "field separator",
"code": "awk -F: '{print $1}' /etc/passwd"
},
{
"caption": "sum numbers in first column",
"code": "awk '{s+=$1} END{print s}' nums.txt"
},
{
"caption": "lines matching /re/",
"code": "awk '/error/{print NR\": \"$0}' log.txt"
}
]
}