- or download this
while( not ( $worker1Finished eq 'true' and
$worker2Finished eq 'true' )
) {
# ...
}
- or download this
while( not $worker1Finished eq 'true' &&
$worker2Finished eq 'true'
) {
# ...
}
- or download this
until( $worker1Finished eq 'true' and
$worker2Finished eq 'true'
) {
# ...
}