Help for this page

Select Code to Download


  1. or download this
    ($UUID) = map { (split (/"/, $_))[-1] } grep { /IOPlatformUUID/ } `ior
    +eg -d2 -c IOPlatformExpertDevice`;
    print $UUID;
    
  2. or download this
    #!/usr/bin/env perl 
    use strict;
    ...
    
    my ($UUID) = map { (split (/"/, $_))[-1] } grep { /IOPlatformUUID/ } '
    +IOPlatformUUID = "foo"';
    print "$UUID\n";