Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们为多台机器上的用户定义了主文件夹。但是其中一台服务器中缺少主文件夹。如何找出哪个服务器缺少主文件夹?
例如用户名为:my_user 有服务器:host1,host2,host3,host4
/home/my_user 在其中一台机器中丢失。
也许是这样的:
对于主机 1、主机 2、主机 3;等等等等
使用如下所示的for循环:ssh
for
ssh
for host in host1 host2 host3 do ssh "$host" '[ ! -d /home/my_user ] && echo "Does not exist on $(hostname)"' done