Help for this page

Select Code to Download


  1. or download this
    map { $1 if /^\w+:\s+(\w+)\b/ }
    
  2. or download this
    map { /^\w+:\s+(\w+)\b/ }
    
  3. or download this
    split /\n/, `gst-inspect-1.0`
    
  4. or download this
    `gst-inspect-1.0`
    
  5. or download this
    my %plugins =
        map { $_ => scalar `gst-inspect-1.0 $_` }
            map { /^\w+:\s+(\w+)\b/ }
                `gst-inspect-1.0`;
    
  6. or download this
    my %plugins =
        map { /^\w+:\s+(\w+)\b/ ? $1 => scalar `gst-inspect-1.0 $1` : () }
            `gst-inspect-1.0`;