Issue
Is there any command so that one can get all the client names and their mount points by this single command in Linux? How about in Windows?
Solution
You can use usermount
command to list all the mount points.
But also you can give a try to check /etc/fstab
file
cat /etc/fstab
or
df -k
Answered By - Skynet