Joey Hess writes: > > But how can you explain > > -------------------------- > > #! /bin/ash > > mkdir -p test/{foo,bar} > > -------------------------- > > does expand the {foo,bar}, while > > It doesn't here.
Sorry. It doesn't here either. But try: ------------------------- ------------------------- #! /bin/ash vs #!/bin/ash install -d test/{foo,bar} install -d test/{foo,bar} ------------------------- ------------------------- and see what you get. ash version: 0.3.5-9 Thanks. -- H Huang