- 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
26 lines
503 B
JSON
26 lines
503 B
JSON
{
|
|
"name": "seq",
|
|
"section": 1,
|
|
"title": "print sequences of numbers",
|
|
"synopsis": [
|
|
"seq [OPTION]... [OPERAND]..."
|
|
],
|
|
"description": "Bare OS implementation of print sequences of numbers. Full behavior is defined in packages/bare-os-coreutils/src/seq.js.",
|
|
"options": [],
|
|
"keywords": [
|
|
"seq",
|
|
"bare-os",
|
|
"coreutils"
|
|
],
|
|
"examples": [
|
|
{
|
|
"caption": "1..10",
|
|
"code": "seq 1 10"
|
|
},
|
|
{
|
|
"caption": "step",
|
|
"code": "seq 0 2 20"
|
|
}
|
|
]
|
|
}
|