#!/usr/bin/perl -w $ENV{'LANG'} = "en_US"; my %HBAWWN; foreach(`luxadm -e port`){ if(/^\S+\s+\bconnected\b/i){ my $addr = (split)[0]; $HBAWWN{$addr} = "undefined"; foreach(`luxadm -e dump_map $addr`){ if(/\bhost\s+bus\s+adapter\b/i){ $HBAWWN{$addr} = (split)[4]; } } } } printf "\n%-65s%s\n","HBA Device Path","Port WWN"; print "-" x 80 ."\n"; while(($key,$value) = each %HBAWWN){ printf "%-65s%s\n", $key, $value; } print "-" x 80 ."\n\n"; print " Created by dabay\@sina.com\n Welcome to visit www.webbeach.com\n\n"; |
欢迎光临 Chinaunix (http://bbs.chinaunix.net/) | Powered by Discuz! X3.2 |