05743d7949
hush: fix a case where none of pipe members could be started because of fork failure hush: rename functions: xxx_real -> xxx hush: try to add a bit more of vfork-friendliness hush: add rudimentary design docs hush: add TODO (newly discovered bug with globbing)
20 lines
412 B
Plaintext
20 lines
412 B
Plaintext
## TODO: fix and add to testsuite
|
|
|
|
## # bash zbad2
|
|
## ZVAR=z.map
|
|
## *.map
|
|
## # hush zbad2
|
|
## ZVAR=z.map
|
|
## z.map <====== !!!
|
|
|
|
## hush does globbing for "VAR=val" too!
|
|
## it should do it only for non-assignments.
|
|
## even if word looks like assignment, it can be non-assignemnt:
|
|
## ZVAR=*.map /bin/echo ZVAR=*.map
|
|
## ^dont_glob ^glob
|
|
|
|
>ZVAR=z.map
|
|
ZVAR=*.map /bin/echo ZVAR=*.map
|
|
ZVAR=*.map
|
|
echo "$ZVAR"
|