Help for this page

Select Code to Download


  1. or download this
    eval { $foo = `some_bad_command` or die "blam" };
    warn $@ if $@;
    
  2. or download this
    use strict;
    
    ...
    
    eval { $foo = `some_bad_command` or die "blam" };
    warn $@ if $@;