- 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
609 B
JSON
26 lines
609 B
JSON
{
|
|
"name": "dirname",
|
|
"section": 1,
|
|
"title": "return directory portion of a pathname",
|
|
"synopsis": [
|
|
"dirname [OPTION]... [OPERAND]..."
|
|
],
|
|
"description": "Bare OS implementation of return directory portion of a pathname. Full behavior is defined in packages/bare-os-coreutils/src/dirname.js.",
|
|
"options": [],
|
|
"keywords": [
|
|
"dirname",
|
|
"bare-os",
|
|
"coreutils"
|
|
],
|
|
"examples": [
|
|
{
|
|
"caption": "parent path",
|
|
"code": "dirname /a/b/c.txt"
|
|
},
|
|
{
|
|
"caption": "compose with basename",
|
|
"code": "p=/x/y/z; echo $(dirname $p)/$(basename $p)"
|
|
}
|
|
]
|
|
}
|