On linux if i want to check what's auto mounted i would do the following. What would the equivalent be on aix?
if [ ` ps -ef | grep -v grep | grep -c automount ` -eq 1 ]; then
if [ -z /etc/auto.misc ]; then
cat /etc/auto.misc
else
echo "nothing mounted with auto mounter"
fi
fi