Help for this page

Select Code to Download


  1. or download this
    ...
        if( $line =~ /(\[\d+\.\d+\sGB\s\/\s\d+\.\d+\sGB\])/i ) {
            my $pvname = $1;
            print $pvname;
        };
    
  2. or download this
    for my $line (`pvscan`) {
        ...
    };