Vxvm script for Display Disk Group with Volume Information

Script :

#!/usr/bin/ksh
vxprint | grep Disk |awk {'print $3'} | grep -v rootdg >/var/tmp/dgname
printf "\n......................................................................\n"
printf "Server Name : "
hostname
cat /var/tmp/dgname | while read dgnames
do
printf "......................................................................\n"
printf "\nDiskGroup Name : $dgnames "
vxprint -g $dgnames | grep ^dm |awk 'BEGIN {TOT=0} {TOT=TOT+$5} END{print " Total Size of the DG=" TOT/2/1024" MB ("TOT/2/1024/1024" GB)\n"}'
vxprint -g $dgnames | grep ^v | awk '{print "Volume : " $2" " $5/2/1024 " MB (" $5/2/1024/1024 "GB)"}'
printf "\nAvailable space in $dgnames = "
vxassist -g $dgnames maxsize| awk '{print $5}'
done
printf "......................................................................\n"


Output :

......................................................................
Server Name : SolarisVM
......................................................................

DiskGroup Name : datadg Total Size of the DG=415733 MB (405.989 GB)

Volume : Bla_vg 100 MB (0.0976562GB)
Volume : Datavol 102400 MB (100GB)
Volume : WEB 15360 MB (15GB)
Volume : fvol 73728 MB (72GB)
Volume : insvol 76800 MB (75GB)
Volume : spare 6144 MB (6GB)

Available space in datadg = (2945Mb)
......................................................................

DiskGroup Name : unixdg Total Size of the DG=173636 MB (169.567 GB)

Volume : exp 30720 MB (30GB)

Available space in unixdg = (142915Mb)
......................................................................