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.
我正在尝试建立 SSH 连接并查看是否存在目录,如果该目录存在,我想在进行 SSH 调用的本地计算机上运行命令。
这是我尝试过的:
if [ ssh -t username@ssh_server -d /directory ] then { commands.... } fi
这样的事情可能吗?
你非常接近:
将 if 语句更改为
if ssh username@ssh_server '[ -d /directory ]'
我假设您已经设置了基于密钥的身份验证。