-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Description
() { echo hello world }
should consider echo
a command word.
This is related to:
() echo hello world
(single-statement anonymous functions)f() { echo hello world }
(normal function)f g h () { echo hello world }
(withMULTI_FUNC_DEFS
){ echo hello world } | …
(inline blocks) (which are related to subshells: issue subshells highlighted as incorrect syntax #166)