Bug 199

Summary: hush does not handle `set -- ...`
Product: Busybox Reporter: Mike Frysinger <vapier>
Component: Standard ComplianceAssignee: unassigned
Status: RESOLVED FIXED    
Severity: enhancement CC: busybox-cvs
Priority: P5    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Linux   
Host: Target:
Build:

Description Mike Frysinger 2009-03-19 05:41:46 UTC
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})
Comment 1 Denys Vlasenko 2009-03-20 10:16:11 UTC
Please try this patch:

http://busybox.net/downloads/fixes-1.13.3/busybox-1.13.3-hush.patch
Comment 2 Mike Frysinger 2009-03-20 10:38:50 UTC
seems to work for me, thanks !