Help for this page

Select Code to Download


  1. or download this
    my $tool_name = "tar";  # simple example
    my $tool_path = '';
    ...
        }
    }
    die "No $tool_name command available\n" unless ( $tool_path );
    
  2. or download this
    my $tool_name = "tar";
    my $tool_path = `which $tool_name`;
    die "No $tool_name command available\n" unless ( $tool_path );