Further Updates to MD

This commit is contained in:
Raven Scott
2026-04-25 23:15:49 -04:00
parent acd4867bad
commit 0e3e5be329
115 changed files with 824 additions and 702 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ new AsyncFunction(
)
```
If **`run`** exists, it is **awaited** after the rest of the file. **`/bin`** commands always define **`run`**; home-directory scripts may use top-level code only (e.g. `**console.log(...)`**).
If **`run`** exists, it is **awaited** after the rest of the file. **`/bin`** commands always define **`run`**; home-directory scripts may use top-level code only (e.g. **`console.log(...)`**).
---
@@ -76,7 +76,7 @@ async function run(ctx, argv) {
## Git and special cases
- Prefer the **`git`** command for version control; it is **not** the same as evaluating `/bin/git` as JS.
- **`command -v**` / **`type`** use **`resolveBinInPath`** (system drive PATH only) plus builtin tables.
- **`command -v`** / **`type`** use **`resolveBinInPath`** (system drive PATH only) plus builtin tables.
---