Bash += and -=: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://linuxize.com/post/bash-increment-decrement-variable/ =Internal= * bash Concepts =Overview=")
 
Line 6: Line 6:


=Overview=
=Overview=
+= and -= are assignment operators that can be used to increment/decrement the value of the left operand with the value specified after the operator.

Revision as of 05:30, 8 May 2020

External

Internal

Overview

+= and -= are assignment operators that can be used to increment/decrement the value of the left operand with the value specified after the operator.