Files
bare-operating-system/packages/bare-os-coreutils/man/pages/awk.json
T
Raven Scott 071edccfb3 Expand bounded awk/expr/test toward Issue 7; refresh man, profile 1.0.18,
posix matrix/dashboard, and syscalls/process_table schema alignment (v8).

Booter: replication_operator_sketch/corestore hints, HRPC allowlist tests,
Protomux cap channel 65536-byte bound + export, Wasm posix_profile_peek,
swarm-disk and security_posture docs.

Coreutils/kernel: pkg-swarm-index pathCapabilityEnvelopeVerify on get;
pathcap-verify --trusted failure hint; rebuild bins and sync seeder.

Docs: KERNEL_CONTRACT, kernel-extensions, capabilities index, environment
appendix (warm-cache tuning, cap channel, Wasm env), handbook observability,
vault threat model (multisig), developer-guide ctx/HRPC/Wasm, DOCUMENTATION
release-checklist note, release-checklist optional tier1 drift.

Changelog maintenance in bare-os-booter and bare-os-protocol.
2026-04-05 23:01:54 -04:00

46 lines
1.2 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"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; Issue 7oriented subset (BEGIN/END, patterns, arrays, printf, POSIX math builtins atan2/cos/sin/exp/log/sqrt, getline from stdin or file via getline var < path, next/nextfile, delete). See handbook ch.9 §7 for lexer and timing divergences.",
"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"
}
]
}