Help for this page

Select Code to Download


  1. or download this
      $script = 'foo.pl';
      # or $script = <STDIN>; chomp $script;
      $path = '/some/path/';
      $script = $path . $script;
    
  2. or download this
      $script = '/some/path';
      $script .= 'foo.pl';
      # or $script .= <STDIN>; chomp $script;