Help for this page

Select Code to Download


  1. or download this
    chdir($corner) or die "\n $!\n";
    
  2. or download this
    chdir($corner) or die "\nCannot cd to $corner $!";
    
  3. or download this
    $  perl -e 'my $c = "foobar.txt"; open my $FH, "<", $c or die "cannot 
    +open $c $!"; '
    cannot open foobar.txt No such file or directory at -e line 1.
    
    $  perl -e 'my $c = "foobar.txt"; open my $FH, "<", $c or die "cannot 
    +open $c $!\n"; '
    cannot open foobar.txt No such file or directory
    
  4. or download this
    &loading_tsc;
    
  5. or download this
    loading_tsc();
    # or: loading_tsc($param1, $param2);