Script to find a mount point on multiple server

Hi,

I have to find a mount point called... /opt/recall on multiple servers.. .Could someone give me a suggestion on how I could do this?

Apart from commands df and mount , I don't know much.... specially using these commands for multiple servers. :frowning:

1 Like
for host in $HOST_LIST
do
 ssh $host -n "df|sed 's/^/$host /'"
done > log