- or download this
$temp = eval { $mech->get($imgsrc) };
if( not $temp ){
...
}
- or download this
eval { $mech->get( $imgsrc ); };
if( not $mech->res->is_success ){
...
}
- or download this
if( not eval { $mech->get( $imgsrc ); 1 } ){
...
}
- or download this
eval { $mech->get( $imgsrc ); 1 }
or do {
...
};