| Summary: | hush does not handle `set -- ...` | ||
|---|---|---|---|
| Product: | Busybox | Reporter: | Mike Frysinger <vapier> |
| Component: | Standard Compliance | Assignee: | unassigned |
| Status: | RESOLVED FIXED | ||
| Severity: | enhancement | CC: | busybox-cvs |
| Priority: | P5 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Host: | Target: | ||
| Build: | |||
Please try this patch: http://busybox.net/downloads/fixes-1.13.3/busybox-1.13.3-hush.patch seems to work for me, thanks ! |
simple test: $ set -- a b c $ echo $1 correct behavior is to see "a" ... hush however does not reset the positional arguments as expected ({1,2,3} -> {a,b,c})