Pattern: Invalid decimal comparison
Issue: -
Bash arithmetic conditional evaluation can only be performed on integers. Bash has limited data types which include integer, but everything is effectively untyped.
Use bc
or awk
to resolve.
Pattern: Invalid decimal comparison
Issue: -
Bash arithmetic conditional evaluation can only be performed on integers. Bash has limited data types which include integer, but everything is effectively untyped.
Use bc
or awk
to resolve.