79795387

Date: 2025-10-21 00:52:43
Score: 1
Natty:
Report link

Your line 3 contains unbalanced square brackets:

if [[ "$my_error_flag"=="1" || "$my_error_flag_o"=="2" ]

should be

if [[ "$my_error_flag" == "1" || "$my_error_flag_o" == "2" ]]

Note I also added spaces around ==.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kim Silverman