Help for this page
system(...) and die; # Ugly. ... if ( system(...) ) { die } # C-ish and ugly. unless ( system(...) == 0 ) { die } # Nicer