system( "$your_command" ); if( $? != 0 ) { warn "something's wrong"; } ## or ## ( system( "$cmd" ) == 0 ) or warn "the sky is falling!"; ##