$a && $b
$a || $b
! $a
$a and $b
$a or $b
not $a
Examples:
if( $a > 5 && $b < 10) { ... } $home = $ENV{HOME} || $ENV{LOGDIR} || (getpwuid($<))[7];