You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If no command name results [from processing the command line], or if the command name is a special built-in or function, variable assignments shall affect the current execution environment. Otherwise, the variable assignments shall be exported for the execution environment of the command and shall not affect the current execution environment except as a side-effect of the expansions performed [while doing tilde expansion and other stuff to get the command line]
$ typetruetrue is a shell builtin
$ FOO=bar /bin/true
$ echo$FOO
$ FOO=bar true
$ echo$FOO
$ true() builtintrue
$ FOO=bar true
$ echo$FOO
bar
$
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: