标签: linux
如何在linux服务器中查找目录是否在许多服务器之间共享(公共安装)?
答案 0 :(得分:0)
mount -l | grep 'type nfs' | sed 's/.* on \([^ ]*\) .*/\1/'应该为您提供系统上所有nfs挂载点的列表,然后您可以抓住您的目录名称:
mount -l | grep 'type nfs' | sed 's/.* on \([^ ]*\) .*/\1/'
mount -l | grep 'type nfs' | sed 's/.* on \([^ ]*\) .*/\1/' | grep /path/to/dir