Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Linux, macOS, and Windows.

```
tests/scenarios/
├── cmd/ # builtin command tests (echo, cat, grep, head, tail, wc, ...)
├── cmd/ # builtin command tests (echo, cat, grep, head, tail, uniq, wc, ...)
└── shell/ # shell feature tests (pipes, variables, control flow, ...)
```

Expand Down
1 change: 1 addition & 0 deletions SHELL_FEATURES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Blocked features are rejected before execution with exit code 2.
- ✅ `tail [-n N|-c N] [-q|-v] [-z] [FILE]...` — output the last part of files (default: last 10 lines); supports `+N` offset mode; `-f`/`--follow` is rejected
- ✅ `tr [-cdsCt] SET1 [SET2]` — translate, squeeze, and/or delete characters from stdin
- ✅ `true` — return exit code 0
- ✅ `uniq [OPTION]... [INPUT]` — report or omit repeated lines
- ✅ `wc [-l] [-w] [-c] [-m] [FILE]...` — count lines, words, bytes, or characters in files
- ❌ All other commands — return exit code 127 with `<cmd>: not found` unless an ExecHandler is configured

Expand Down
Loading