- Docs: kernel-program truth, PLACEHOLDER_BASELINE, POSIX_DECLARED_PROFILE, env appendix (BARE_OS_SHELL_PIPEFAIL, BARE_OS_WASM_KERNEL), package-bare-os-booter - Booter: syscalls.json fd model, process_table exitStatusModel, shell pipeline exit status + kernel-runner script-error path, mirror mounts test + handbook - Seeder: corestore_snapshot proc alignment test; hyperswarm ^4.17.0; kernel mirror sync - Vault: vault_save audit after saveVaultToDrive; split bare-os-vault-rotation-audit.js - Contract: protomux/hyperswarm lock fixture + test; IPC stats ipcBackpressure test - Coreutils: XCU tests, bare-cron man seed, ACL/xattr metadata path test - Tooling: kernel-microbench + release-gate fixture doc; ADR 002 WASM compile hook - Changelog/ctx d.ts and dependency/lockfile updates as needed
36 lines
772 B
JSON
36 lines
772 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": [],
|
|
"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\" \\)"
|
|
}
|
|
]
|
|
}
|