Files
bare-operating-system/packages/bare-os-coreutils/man/pages/find.json
T
Raven Scott 92384990c5 feat(booter): POSIX/P2P roadmap — syscalls v4, mirror VFS, seeder snapshot hints
- Bump ctx API to 1.31.0; extend /proc/bare_os/syscalls.json schema 4 (fdModel, signalModel)
- Add /mirror/aux* routing for auxiliary Hyperdrives; optional BLAKE2b-keyed /bin cache (BARE_OS_VFS_BIN_CACHE_BLAKE2B)
- Wire seeder snapshotHintsJson from BARE_OS_SEED_* env; add seeder unit tests
- Shell: trap -p; docs for jobs/bg/trap; sync schemas, examples, compatibility matrix, handbook ch.9
- Coreutils: Issue 7 man option rows for cp/mv/ln/find/grep/sed/awk/tar/test/true; xcu-issue7-sweep tests
- Docs: env appendix, vault-threat-model, node-vs-bare-host-matrix, test:bare, CHANGELOG 1.31.0
2026-04-04 22:00:01 -04:00

40 lines
1003 B
JSON

{
"name": "find",
"section": 1,
"title": "find files",
"synopsis": [
"find [PATH...] [EXPRESSION]"
],
"description": "Walks directories and applies expressions (-name, -type, -print, -maxdepth, logical -and/-or/-not).",
"options": [
{ "flag": "-name", "meaning": "[Issue 7 find] Glob pattern on basename." },
{ "flag": "-type", "meaning": "[Issue 7 find] Filter f, d, or l." },
{ "flag": "-maxdepth", "meaning": "[Issue 7 find] Limit walk depth." }
],
"keywords": [
"find",
"directory",
"walk",
"search"
],
"bareOsNotes": "Expression syntax is a simplified subset.",
"examples": [
{
"caption": "files by name glob",
"code": "find . -name \"*.js\""
},
{
"caption": "directories only",
"code": "find . -type d"
},
{
"caption": "max depth",
"code": "find . -maxdepth 2 -type f"
},
{
"caption": "OR names",
"code": "find . \\( -name \"*.c\" -o -name \"*.h\" \\)"
}
]
}