The use of gawkisms will prevent the script from running correctly on systems that use a traditional awk interpreter.
The doublestar exponent operator is not available in traditional implementations
The doublestar gawkism
print (4 ** 3) # 64 (4 to the power of 3)
Precedence
print (2 * 4 ** 3) # 128 the exponent has a higher precedence than multiplication
Exponent Combination Assignment Operator
value **= 3 # value = value ** 3
Powered by sdf Creative Commons License <pierre.gaston+awk@gmail.com>
Awk Wiki by #awk is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.