-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
π Bug Description
Complex shell commands with nested quotes, variables, and command substitution fail when using command-stream due to multiple layers of escaping conflicts.
π΄ Impact
- Can't run sophisticated shell scripts
- Pipeline commands with multiple stages fail
- Advanced shell features are unusable
π Problem Example
```javascript
// Complex command with nested structures
const cmd = 'for file in *.js; do echo "Processing: $file"; done';
// β Fails due to nested quotes and variables
await
```
π§ Challenge
Shell commands often require:
- Nested quotes (single within double)
- Variable expansion at different times
- Command substitution
- Complex escaping rules
All of which conflict when passed through command-stream.
π References
Metadata
Metadata
Assignees
Labels
No labels