本文介绍了如何检查dir是否通过ssh存在并将结果返回到主机的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试建立SSH连接,并查看是否存在目录,并且该目录是否存在,我想在进行SSH调用的本地计算机上运行命令.
I'm trying to establish an SSH connection and see if a directory exist, and if that directory exists I want to run commands on the local machine that made the SSH call.
这是我尝试过的:
if [ ssh -t username@ssh_server -d /directory ]
then
{
commands....
}
fi
这样可能吗?
推荐答案
您非常亲密:
将if语句更改为
if ssh username@ssh_server '[ -d /directory ]'
我假设您已经设置了基于密钥的身份验证.
I am assuming that you have setup key-based authentication.
这篇关于如何检查dir是否通过ssh存在并将结果返回到主机的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!