Help for this page

Select Code to Download


  1. or download this
    print map {
            my @list = split /,/, $_;
            map {s/"//g} @list;
            $list[1];
        } `tasklist /FI "IMAGENAME eq perl.exe" /NH /FO CSV`;
    
  2. or download this
    print map {
            (map {s/"//g} split /,/, $_)[1]
        } `tasklist /FI "IMAGENAME eq perl.exe" /NH /FO CSV`;