in my bash code sometimes I use long parameters in Comparison Operators to test the "OR"
as the following:
if [[ $production_check_linux_disks_quantity == false ]] || [[ $production_linux_mount_point_reference_to_ambari_definition == false ]] || [[ $production_check_linux_mount_point_quantity == false ]] || [[ $production_show_linux_disks_simulation == false ]]
then
problem is that syntax is too long and ugly
some idea how to create it shorter and elegant?