do any one brief out how to write script to list the mounted filesystems in solaris
$cmd = 'df -h'; exec { $cmd };
You can also use the system() function in perl.
thank you very much bryansmith123.