-
Notifications
You must be signed in to change notification settings - Fork 3
[QUESTION] Is += part of the subject? #168
Copy link
Copy link
Open
Labels
lea wontfixLea will not work on thisLea will not work on thismedium priorityThis issue would be nice to be fixedThis issue would be nice to be fixedquestionFurther information is requestedFurther information is requested
Description
Activity
Metadata
Metadata
Assignees
Labels
lea wontfixLea will not work on thisLea will not work on thismedium priorityThis issue would be nice to be fixedThis issue would be nice to be fixedquestionFurther information is requestedFurther information is requested
Projects
- StatusShow more project fieldsBacklog
This matters for both
exportand for local variable assignment.If a
+=is specified instead of an=in shell variable assignments or in arguments toexport, the previous value (if it existed) should not be replaced with the new value.Instead, the new value should be appended to the old value.
Bash manual
It should not be too difficult to add this feature, but ofc it touches almost everything, starting from the Lexer and going all the way to the
final_cmd_tableandexport.